What's the reason for cookies mysteriously rea

2019-05-10 12:24发布

I'm developing a web application using a cookie to store session information. I've manually deleted the session cookies because I'm working on another part of the code where I don't want a login session. However, after a couple reloads of the page, the session cookie mysteriously reappears, including an earlier cookie that I had only set once for testing purposes, then deleted and never used again.

I keep manually deleting the cookies in question, but still, when I reload the page after a while, the cookies are back. I've double-checked my code and I am positive I'm not setting those cookies anywhere. My code is all in one file at the moment, and I'm not including anything, so there's no possibility that I'm overlooking something.

My code is in PHP and used the setcookie() call when I initially created those cookies.

I've not set an expiry date on the cookies. Using Safari 4 Beta and the GlimmerBlocker proxy.

What's the explanation for this weird behaviour?

3条回答
The star\"
2楼-- · 2019-05-10 12:33

What version of the OS are you using? What other apps are you using at the same time? These issues are generally due to apps stomping on the cookie storage file (~/Library/Cookies/Cookies.plist) one after another.

查看更多
时光不老,我们不散
3楼-- · 2019-05-10 12:40

Try this, it should remove all of your session cookies:

    session_start();
    // Unset all of the session variables.
    $_SESSION = array();
    // If it's desired to kill the session, also delete the session cookie.
    // Note: This will destroy the session, and not just the session data!
    if (isset($_COOKIE[session_name()])) {
        setcookie(session_name(), '', time()-42000, '/');
    }       
    // Finally, destroy the session.
    session_destroy();
查看更多
仙女界的扛把子
4楼-- · 2019-05-10 12:46

There are known problems with certain browsers cookie handling.

See the following paper: iSEC Cleaning Up After Cookies

Also see this discussion on Apple.com regarding the case of the reappearing cookie.

查看更多
登录 后发表回答