Set cookie Issues

Source: Internet
Author: User
Tags set cookie setcookie
if (Isset ($_cookie[' history ")) {$history = explode (', ', $_cookie[' history ');    Array_unshift ($history, $id);    $history = Array_unique ($history);    while (count ($history) > 5)    {        array_pop ($history);    } Setcookie (' History ', implode (', ', $history), 80000); Echo ' Add ';} Else{setcookie (' History ', $id, 80000); Echo ' new ';}


Why is it always output new?


Reply to discussion (solution)

Call Dear Moderator.

The expiration period you set is too small!

You should take a serious look at the instructions.
Expire the time that the Cookie expires. This is a UNIX timestamp, which is the number of seconds since the Unix era. In other words, the time () function and the number of seconds are usually used to set the expiration period of the cookie. or use Mktime () to achieve.
Time () +60*60*24*30 expires 30 days after setting the cookie.
If not set, the cookie will expire at the end of the session (usually the browser is closed).

The expiration period you set is too small!

You should take a serious look at the instructions.
Expire the time that the Cookie expires. This is a UNIX timestamp, which is the number of seconds since the Unix era. In other words, the time () function and the number of seconds are usually used to set the expiration period of the cookie. or use Mktime () to achieve.
Time () +60*60*24*30 expires 30 days after setting the cookie.
If not set, the cookie will expire at the end of the session (usually the browser is closed).
Thanks, dear Moderator, for the 3rd time, I solved my problem.
Really didn't look seriously. Thank you so much.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.