php中使用url传递数组的方法
本文实例讲述了php中使用url传递数组的方法。分享给大家供大家参考。具体分析如下:
数组传递这么写:
echo"<ahref=2.php?info=".base64_encode(serialize($information)).">info</a>";
数组接收:
$info=unserialize(base64_decode($_GET['info']));
访问的话:
echo$info['name'];
这里注意unserialize和base_decode的顺序
希望本文所述对大家的php程序设计有所帮助。