我很茫然。
当我用下面的代码设置cookie时......
$thisUser = $player['userID'];
$thisUserName = $player['username'];
setcookie("userID", $thisUser, time()+3600, "/","", 0);
setcookie("username", $thisUserName, time()+3600, "/","", 0);
setcookie("testcookie", "TEST VALUE", time() + 3600, "/", "", 0);
无论出于何种原因,testcookie 都会将过期时间设置为一小时后。其他2个没有设置过期时间,只是说浏览器会话关闭时。cookie 设置了适当的值,但 expire 除外。我错过了什么?
我有 session_start(); 在页面的开头。