0

很抱歉信息量很少,但我无法提供更多信息。问题是,当尝试扩展我的登录功能以添加保持登录的选项时,cookie 不会设置。会话本身有效(因此没有空白字符或其他内容)。我没有收到错误消息,只是没有设置 cookie(用 opera/firefox 测试)。困惑了一个多小时后,我决定在这里问它。下面是登录功能。再往下你会发现它是如何被调用的。不用担心 cookie 中的密码,它是经过哈希处理的。我测试了代码是否确实被执行(在 setcookie 之前放置了一个 echo 'abc'),就是这种情况。

public function login($password,$stayloggedin) {
if ( is_null( $this->id ) ) trigger_error ( "user::login(): Attempt to login an user object that does not have its ID property set.", E_USER_ERROR );

if ($this->compare_password($password))
{

    if ($stayloggedin)
    {
        setcookie("userid", $this->id, time()+3600);
        setcookie("userid", $this->password, time()+3600);
    }

    session_start();
    $_SESSION['user_id'] = $this->id;
    $_SESSION['user_name'] =  $this->name;
    $_SESSION['user_nummer'] =  $this->user_nummer;
    return true;
}
else
{
    return false; //wrong password
}

}

这就是上述函数的调用方式。

<?php
header('Content-type: text/html; charset=UTF-8');
require_once 'required_script.php';
if (isset($_GET['login']))
{

    require_once CLASS_PATH.'user.class.php';

    $user_logging_in=new user();
    $user_logging_in->load_from_name($_POST['user_name']);
    if (isset($user_logging_in->id))
    {
        if ($user_logging_in->login($_POST['user_pass'],$_POST['remember_me']=='true'))
        {
            echo '1';
        }
        else
        {
            echo '0';
        }
    }
    else
    {
        echo '2';
    }
die;
}

非常感谢。

4

1 回答 1

1

您的 cookie 不会设置,因为您在登录/cookie 设置功能发生之前输出 HTML 标头。

在创建 cookie 之前,您不能将任何标头传递给浏览器。

于 2014-03-17T05:11:09.297 回答