Php Cookie的一个使用注意点

2015-01-24信息快讯网

这里需要提醒大家注意的一点是,在 php 中, 如果你在当前页面设置了COOKIE,在 当前页面刷新 或 转向到其他页面之前, cookie 的设置结果不会生效(cookie未过期的情况下)。

<?php 
setcookie('test', 'this is a cookie test'); 
echo ($_COOKIE['test']); 
?> 
上面代码,并不会显示你想要的结果
©2014-2024 dbsqp.com