嗨,我有设置 cookie 的问题。我有一个这样的网址
http://www.myweb.com/series/Setayesh/Part-1在这个 url 我检查是否设置了 cookie
if(isset($_COOKIE['cookiename']))
{
//Perform some operations
}
else
{
setcookie('cookiename',$value,time()+36000)
}
它适用于所有网址,例如
http://www.myweb.com/series/Setayesh/Part-1 http://www.myweb.com/series/Setayesh/Part-1 http://www.myweb.com/series/Setayesh/Part-1 等等
但是当 url 变成
http://www.myweb.com/series/Pezeshkan/Part-1if 条件不执行它总是在同一浏览器中以 else 条件出现。这是什么问题?当我设置 cookie 时,我没有设置任何 url,那么为什么它在这种情况下表现不同。