Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目录结构如下:
如何从父目录中的 login.php 设置 cookie,以便我可以在 homepage.php 中使用它们。
我尝试setcookie("userid",$row["userid"],time()+3600,"../");设置 cookie,print_r($_COOKIE);但在 homepage.php 中没有显示任何 cookie
setcookie("userid",$row["userid"],time()+3600,"../");
print_r($_COOKIE);
只需/用作 cookie 路径。这样,您的 cookie 将可用于您的整个域。
/
setcookie('userid', $row['userid'], time() + 3600, '/');
无论您在哪里设置它以及在哪里检索它,都可以通过$_COOKIE['userid'].
$_COOKIE['userid']