Rumah > Artikel > pembangunan bahagian belakang > Php Cookie的一个使用注意点你知道吗?
这里需要提醒大家注意的一点是,在 php 中, 如果你在当前页面设置了COOKIE,在 当前页面刷新 或 转向到其他页面之前, cookie 的设置结果不会生效(cookie未过期的情况下)。
代码如下:
<?php setcookie('test', 'this is a cookie test'); echo ($_COOKIE['test']); ?>
上面代码,并不会显示你想要的结果
Atas ialah kandungan terperinci Php Cookie的一个使用注意点你知道吗?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!