我有一个目录,在该目录下有两个php文件index.php
,index2.php
:
在index.php
中:
<?php
$_COOKIE['constant_a']='A';
echo($_COOKIE['constant_a']);
在index2.php
中:
<?php
echo($_COOKIE['constant_a']);
首先,我访问http://localhost:63342/htdocs/index.php
,浏览器将显示A
。
,但随后我输入了index2.php
,http://localhost:63342/htdocs/index2.php
:
那里打印未定义的错误:
注意:未定义的索引:第12行/Users/sof/Desktop/htdocs/index.php中的constant_a
为什么不显示A
?