我试过了
$cookie = $_COOKIE['cookie'];
如果cookie未设置,将给我一个错误
PHP ERROR
Undefined index: cookie
我如何防止它给我一个空的变量>
使用
isset
查看cookie是否存在.
if(isset($_COOKIE['cookie'])){
$cookie = $_COOKIE['cookie'];
}
else{
// Cookie is not set
}
原文链接:https://www.f2er.com/html/230195.html