Php Cookie的一个使用注意点
程序员文章站
2022-04-09 09:35:14
复制代码 代码如下:
<?php
setcookie('test', 'this is a cookie test');
echo ($_cookie['test']);
?>
上面代码,并不会显示你想要的结果
复制代码 代码如下:
<?php
setcookie('test', 'this is a cookie test');
echo ($_cookie['test']);
?>