PHP,cookie清空问题
3 回答
慕田峪9158850
TA贡献1794条经验 获得超7个赞
setcookie('User','',time()-58000);
你删除 cookie
setcookie('User',$_GET['uid']."\t".$_GET['username'],time()+58000);
你 写cookie
判断cookie 你可以
if(empty($_COOKIE['User'])){
header("Location: /Login/");
}
牛魔王的故事
TA贡献1830条经验 获得超3个赞
用curl函数
获取cookie在设置
curl_setopt($ch, CURLOPT_COOKIEJAR, 1.txt);
访问时用curl获取内容带上cookie
curl_setopt($ch, CURLOPT_COOKIEFILE, 1.txt);
- 3 回答
- 0 关注
- 632 浏览
添加回答
举报
0/150
提交
取消