致命错误:在非对象中调用成员函数login()

时间:2014-10-15 10:57:33

标签: php model controller member

我作为一个项目继承了一个网络应用程序的问题,不幸的是我无法追踪错误。似乎模型没有加载,但我可能是错的。任何帮助都会很棒。

代码是:

public function login()
{

    //If request is post then user is trying to login, so process the login info
    if ($_SERVER['REQUEST_METHOD'] === 'POST') {

        //Run the model method ::login
        $login_successful = $this->User->login();

        // check login status
        if($login_successful) {
            // if YES, then move user to dashboard/index (btw this is a browser-redirection, not a rendered view!)
            header('location: ' . URL . 'passwords/index');
        } else {
            echo "Incorrect user / pass combination entered. Please try again.";
        }


    }

}

,模型函数是:

public function login() {

    $username = $_POST['data']['User']['username'];
    $password = $_POST['data']['User']['password'];


    $bind = array(
        ":username" => "$username",
    );
    $result = $this->select("users", "username = :username", $bind);

    //Check the password returned from the db against the password entered
    if (Bcrypt::checkPassword($password, $result[0]['password']) == true) {
        Session::init();

        Session::set('user_logged_in', true);
        Session::set('user_id', $result[0]['id']);
        Session::set('user_name', $result[0]['username']);
        Session::set('user_permission', $result[0]['permission']);
        Session::set('user_role', $result[0]['role']);

        return true;
    } else {
        return false;
    }
}

我也注意到控制器和模型都有一个名为login的功能。]

由于

1 个答案:

答案 0 :(得分:0)

原因是$this->User不是有效的类实例。

确保它是一个物体。

尝试

var_dump($this->User);
die();
//Run the model method ::login
$login_successful = $this->User->login();

你会发现那里没有实例。

怎么做?

找到您希望模型初始化的位置。检查,为什么不是。