php 中 cookie 的帮助
可能的重复:
如何为 uuid 设置 cookie
您好,这是我的网站,http://xblgenerator.co.cc 。每次刷新页面时它都会生成一个随机 ID。我已经设置了 cookie,因此现在每个新访问者的 id 都保持不变,直到他们清除 cookie。我唯一的问题是 id 也出现在我的页面的左上角(只需刷新页面两次,你就会看到它)。这是我的 cookie:
<?php
if (isset($_COOKIE["uuid"]))
echo $_COOKIE["uuid"] ;
else
setcookie("uuid", "$rnd_id", time()+368400000);
?>
谁能告诉我要更改什么,这样顶部的小 id 就不会出现?
Possible Duplicate:
How to set cookies for uuid
Hello here's my site, http://xblgenerator.co.cc . It generates a random id everytime the page is refreshed. I have set a cookie so now the id stays the same for every new visitor until they clear their c ookie. My only problem is that the id also appears on the top left corner of my page (just refresh the page twice and you'll see it). Here's my cookie:
<?php
if (isset($_COOKIE["uuid"]))
echo $_COOKIE["uuid"] ;
else
setcookie("uuid", "$rnd_id", time()+368400000);
?>
Can anyone tell me what to change so that the little id on the top doesn't appear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你不想回应。
You don't want to echo.
你正在呼应饼干!
youre echoing the cookie!
不回应它吗?如果你只想设置它:
don't echo it? if you only want to set it: