Where does Chrome store cookies?

前端 未结 6 1158
执笔经年
执笔经年 2020-11-29 00:18

Let\'s say I set a cookie using the setcookie() function in PHP:

setcookie(\'name\',\'foo\',false,\'/\',false);

I

6条回答
  •  时光说笑
    2020-11-29 00:41

    Since the expiration time is zero (the third argument, the first false) the cookie is a session cookie, which will expire when the current session ends. (See the setcookie reference).

    Therefore it doesn't need to be saved.

提交回复
热议问题