+ -
当前位置:首页 → 问答吧 → php使用cookie undefined index错误

php使用cookie undefined index错误

时间:2011-08-29

来源:互联网

PHP code
if(!isset($_COOKIE['history'])){
        setcookie('history',"",time()+3600*24);
        $user_cookie=$_COOKIE['history'];//这一行报的错误,Undefined index: history
            
}

为什么呢,各位大大求解

作者: autumnkiller   发布时间: 2011-08-29

你给他一个值试试。
 setcookie('history',"haha",time()+3600*24);

作者: jordan102   发布时间: 2011-08-29