对于少量的信息我很抱歉,但我没有其他的东西可以给你。问题是,当尝试扩展我的登录功能以添加保持登录的选项时,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;
}
非常感谢。
答案 0 :(得分:1)
您的Cookie不会设置,因为您在登录/ cookie设置功能发生之前输出了HTML标头。
在创建cookie之前,您无法将任何标题传递给浏览器。