Home >Backend Development >PHP Tutorial >请各位大大帮忙,php中session数组合并的有关问题

请各位大大帮忙,php中session数组合并的有关问题

WBOY
WBOYOriginal
2016-06-13 11:28:41881browse

请各位大大帮忙,php中session数组合并的问题!
session_start();
$page=$_POST['page'];  //传递回page值进行循环比较
$pagestr="p".$_POST['page']; //将page值转为字符数组的关键字
$pagecount=$_POST['pagecount'];
$idstr=$_POST['idstr'];

for($i=1;$i  if ($i=$page) {
$_SESSION[$i]=array($pagestr=>$idstr);
$_SESSION[idstr]=array_merge($_SESSION[idstr],$_SESSION[$i]);};
break;}; //进行循环,并将每页选择的复选框信息储存到数组中
$_SESSION[total_idstr]=implode("",$_SESSION[idstr]); //将数组转换为字符串,包含了所有复选框选择的信息    
echo $_SESSION[total_idstr];
?>

做了一个获取复选框的会话,用字符串作为键值P1表示第一页,然后将第一页选择的内容输入到数组,格式为p1=>1|2|,问题在合并数组的时候无发获得相应的值,echo没有输出,不知道是怎么回事!怕碰到死循环,所以在循环到$i=$page就跳出了!
家里的电脑执行完全没有问题!
单位的电脑同样的环境却无法输出!
求解啊,什么问题!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn