Php Cookie的一个使用注意点_PHP
程序员文章站
2022-03-29 11:42:31
...
Cookie
复制代码 代码如下:
setcookie('test', 'this is a cookie test');
echo ($_COOKIE['test']);
?>
上面代码,并不会显示你想要的结果
setcookie('test', 'this is a cookie test');
echo ($_COOKIE['test']);
?>
上面代码,并不会显示你想要的结果