我通过 url 传递了一个数组,但是当我想使用 $sim_p[1] 时,我遇到了“注意:未定义的偏移量:1”,但是对于偏移量 0,它工作正常!
$url = 'My Library.php?num='.$k.'&sim_p[]=' . implode('&sim_p[]=', array_map('urlencode', $sim_p)); //sim_p[ 0 ] and sim_p[ 1 ] are full in this page
header ("Location:".$url);
在我的 Library.php 中:
$num = $_GET[ 'num' ];
$sim_p = array();
if($num > 0){
$sim_p = $_GET[ 'sim_p' ];
}
先感谢您!