当前位置: 代码迷 >> PHP >> $_SESSION['expanded'][$_GET['expand']] = true;什么意思解决办法
  详细解决方案

$_SESSION['expanded'][$_GET['expand']] = true;什么意思解决办法

热度:105   发布时间:2016-04-28 19:06:34.0
$_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)
就知道数组长什么样子
------解决方案--------------------

$a = $_GET['expand']; //取出$_GET['expand']中的值
$b = 'expanded'; //$b赋值
$_SESSION[b][a] = true; //设置session值


无非就是单词长点!
------解决方案--------------------

$a = $_GET['expand']; //取出$_GET['expand']中的值
$b = 'expanded'; //$b赋值
$_SESSION[$b][$a] = true; //设置session值


------解决方案--------------------
 不奇怪吧,就是一个session二维数组。。
------解决方案--------------------
是数组问题
$_SESSION['expanded']=$abc
$_GET['expand']=2
换下来就是
$abc[2]=true
这是典型的数组写法了
  相关解决方案