php 中 cookie 的帮助

发布于 2024-11-03 04:53:01 字数 597 浏览 0 评论 0原文

可能的重复:
如何为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

埖埖迣鎅 2024-11-10 04:53:01

你不想回应。

<?php
if (!isset($_COOKIE["uuid"]))
   setcookie("uuid", "$rnd_id", time()+368400000);
?>

You don't want to echo.

<?php
if (!isset($_COOKIE["uuid"]))
   setcookie("uuid", "$rnd_id", time()+368400000);
?>
寂寞美少年 2024-11-10 04:53:01

你正在呼应饼干!

<?php
if (!isset($_COOKIE["uuid"])) {
   setcookie("uuid", "$rnd_id", time()+368400000);
}
?>

youre echoing the cookie!

<?php
if (!isset($_COOKIE["uuid"])) {
   setcookie("uuid", "$rnd_id", time()+368400000);
}
?>
相思故 2024-11-10 04:53:01

不回应它吗?如果你只想设置它:

<?php
if (!isset($_COOKIE["uuid"]))
   setcookie("uuid", "$rnd_id", time()+368400000);
?>

don't echo it? if you only want to set it:

<?php
if (!isset($_COOKIE["uuid"]))
   setcookie("uuid", "$rnd_id", time()+368400000);
?>
↙厌世 2024-11-10 04:53:01
<?php
if (isset($_COOKIE["uuid"]))
   echo $_COOKIE["uuid"] ;
else
   setcookie("uuid", $rnd_id, time()+368400000);
?>
<?php
if (isset($_COOKIE["uuid"]))
   echo $_COOKIE["uuid"] ;
else
   setcookie("uuid", $rnd_id, time()+368400000);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文