Rumah > Artikel > pembangunan bahagian belakang > $_SESSION['expanded'][$_GET['expand']] = true;什么意思解决办法
$_SESSION['expanded'][$_GET['expand']] = true;什么意思
$_SESSION['expanded'][$_GET['expand']] = true;什么意思
这个写法好怪。
------解决方案--------------------
$_GET['expand'] 是获取以get方式传递的参数值。
$_SESSION['expanded'][ ] 是一个二维数组。
例如$_GET['expand'] 的值是abc
那么
$_SESSION['expanded'][$_GET['expand']] = true;
等于
$_SESSION['expanded']['abc'] = true;
很怪吗?
最后$_SESSION的值是array('expanded'=>array('abc'=>true));
------解决方案--------------------
print_r($_SESSION)
就知道数组长什么样子
------解决方案--------------------
<br />$a = $_GET['expand']; //取出$_GET['expand']中的值<br />$b = 'expanded'; //$b赋值<br />$_SESSION[b][a] = true; //设置session值<br />
<br />$a = $_GET['expand']; //取出$_GET['expand']中的值<br />$b = 'expanded'; //$b赋值<br />$_SESSION[$b][$a] = true; //设置session值<br />