以下代碼在IE8上不起作用。 我試過print_r($ _COOKIE),但它返回數組(); 請幫助我。PHP setcookie無法在IE8上工作
1 <?php
2 $currentTime = time();
3
4 $cookieName = "go.hyde";
5 $cookiePath = "/";
6 $cookieDomain = $_SERVER['SERVER_NAME'];
7 $cookieValue = strval($currentTime); // value is issue time (Unix Time)
8 $cookieExpire = strval($currentTime + 600); // expire is 10 minutes after issuing cookie
9
10 setcookie($cookieName,
11 $cookieValue,
12 $cookieExpire,
13 $cookiePath,
14 $cookieDomain);
15
你會得到什麼樣的錯誤? – Starx
如果您有解決方案,可以給我發現沒有錯誤。 – suzuking
我該如何解決問題如果我不知道這個問題? – Starx