欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP 对用户登录信息 Cookie 进行验证

程序员文章站 2024-02-13 23:01:10
...
PHP 对用户登录信息 Cookie 进行验证
<?php
unset($username);
if ($_COOKIE['login']) {
    list($c_username,$cookie_hash) = split(',',$_COOKIE['login']);
    if (md5($c_username.$secret_word) == $cookie_hash) {
        $username = $c_username;
    } else {
        print "You have sent a bad cookie.";
    }
}

if ($username) {
    print "欢迎, $username.";
} else {
    print "欢迎, 游客.";
}
?>

以上就是PHP 对用户登录信息 Cookie 进行验证的内容,更多相关内容请关注PHP中文网(www.php.cn)!