如何解决php cookie失效的问题

2023-06-12,,

这期内容当中小编将会给大家带来有关如何解决php cookie失效的问题,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

php cookie失效是因为当setcookie中第4个参数为空的话,默认只在当前目录生效,其解决办法就是添加第4个参数,语句为“setcookie("id",$id, time()+36002430 ,'/');”。

PHP设置cookie无效问题原因以及解决方案

在某个页面中使用setcookie来设置cookie,例如

setcookie("id",$id, time()+36002430);

但是回到首页之后发现没有生效,用javascript:alert(document.cookie)里面为空,PHP里面的$_COOKIE也是没有数据。

跑到PHP官网查看setcookie的说明,官网的例子也是这样的,但是仔细看来参数说明之后就发现问题了。

setcookie的第4个参数是path

The path on the server in which the cookie will be available on. If set to ‘/’, the cookie will be available within the entire domain. If set to ‘/foo/’, the cookie will only be available within the /foo/ directory and all sub-directories such as /foo/bar/ of domain. The default value is the current directory that the cookie is being set in.

也就是说如果第4个参数为空的话,默认只在当前目录生效,一般情况下是没有问题的。

但是我的站点设置了rewrite,把index.php给隐去了,所以设置的cookie变成只在该页面有效。

解决方案就是添加第4个参数

setcookie("id",$id, time()+36002430 ,'/');

上述就是小编为大家分享的如何解决php cookie失效的问题了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注本站行业资讯频道。

《如何解决php cookie失效的问题.doc》

下载本文的Word格式文档,以方便收藏与打印。