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.
这段代码有什么问题?
setcookie("password",$wachtwoord,0, "/", ".thedomainname.com"); echo $_COOKIE['password']; //shows nothing
我正在尝试设置 cookie 并显示其值?
带有该新 cookie 的 $_COOKIE[] 将仅在下一个请求时可用
在检查 $_COOKIE 之前,您是否正在等待下一个请求?
在重新加载页面之前,您无法访问 cookie。
我测试了这段代码,并且工作正常!
<?PHP setcookie( 'Test' , 'Test' ); echo $_COOKIE['Test']; ?>