Home > Backend Development > PHP Tutorial > $_SESSION['expanded'][$_GET['expand']] = true;什么意思

$_SESSION['expanded'][$_GET['expand']] = true;什么意思

WBOY
Release: 2016-06-23 13:55:51
Original
1160 people have browsed it

$_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值
Copy after login


无非就是单词长点!

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

 不奇怪吧,就是一个session二维数组。。

是数组问题
$_SESSION['expanded']=$abc
$_GET['expand']=2
换下来就是
$abc[2]=true
这是典型的数组写法了

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template