Php Cookie的一个使用注意点
2018-09-07 19:05
阅读:532
复制代码 代码如下:
<?php
setcookie(test, this is a cookie test);
echo ($_COOKIE[test]);
?>
上面代码,并不会显示你想要的结果
评论
亲,登录后才可以留言!
2018-09-07 19:05
复制代码 代码如下:
<?php
setcookie(test, this is a cookie test);
echo ($_COOKIE[test]);
?>
上面代码,并不会显示你想要的结果