复制代码 代码如下:
<?php
setcookie('test', 'this is a cookie test');
echo ($_COOKIE['test']);
?>
上面代码,并不会显示你想要的结果
时间: 2024-11-05 19:32:30
复制代码 代码如下:
<?php
setcookie('test', 'this is a cookie test');
echo ($_COOKIE['test']);
?>
上面代码,并不会显示你想要的结果