<?php
session_start();
$_SESSION['logged_in'] = false;
setcookie("dsgpassword127", $password, time()-3600); /* expire the cookie */
setcookie("dsgemail127", $email, time()-3600); /* expire the cookie */
session_destroy();
header("location: index.php");
?>
上面在 Chrome 中运行良好的代码不会删除 FireFox 14.0.1 中的 cookie。我想知道为什么会这样,如果有人遇到过同样的问题,或者是否有解决这个难题的方法,我在这些 cookie 过期时遇到了问题......