PHP設定cookie無效問題原因以及解決方案
阿新 • • 發佈:2018-12-11
在某個頁面中使用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 ,'/');