0

投稿したコードがcodeフォーマットされていないことをお許しください。時々4つのスペースを機能させることができませんでした。

やあ。CodeIgniter の num_rows() 関数が原因で発生したこのエラーに関する洞察を探しています。

Fatal error: Call to undefined method CI_DB_mysql_driver::num_rows() in [my controller]    

それはどういうわけかこれに根ざしているようです...おそらく:

A PHP Error was encountered
Severity: 4096

Message: Object of class CI_DB_mysql_driver could not be converted to string

Filename: database/DB_active_rec.php

Line Number: 427

427 行目: $v = ' '.$this->escape($v);

関数からのものです: protected function _where($key, $value = NULL, $type = 'AND ', $escape = NULL)

私は CodeIgniter と IonAuth を使用していますが、この関数を呼び出すと問題が num_rows() にあるようです: public function login($identity, $password, $remember=FALSE) { $this->trigger_events('pre_login') ;

    if (empty($identity) || empty($password))
    {
        $this->set_error('login_unsuccessful');
        return FALSE;
    }

    $this->trigger_events('extra_where');

    $query = $this->db->select($this->identity_column . ', username, email, id, password, active, last_login')
                      ->where($this->identity_column, $this->db->escape_str($identity))
                      ->limit(1);

    echo $query;

    if ($query->num_rows() === 1)
    {
        $user = $query->row();

        $password = $this->hash_password_db($user->id, $password);

        if ($password === TRUE)
        {
            if ($user->active == 0)
            {
                $this->trigger_events('post_login_unsuccessful');
                $this->set_error('login_unsuccessful_not_active');

                return FALSE;
            }

            $session_data = array(
                'identity'             => $user->{$this->identity_column},
                'username'             => $user->username,
                'email'                => $user->email,
                'user_id'              => $user->id, //everyone likes to overwrite id so we'll use user_id
                'old_last_login'       => $user->last_login
            );

            $this->update_last_login($user->id);

            $this->clear_login_attempts($identity);

            $this->session->set_userdata($session_data);

            if ($remember && $this->config->item('remember_users', 'ion_auth'))
            {
                $this->remember_user($user->id);
            }

            $this->trigger_events(array('post_login', 'post_login_successful'));
            $this->set_message('login_successful');

            return TRUE;
        }
    }

    //Hash something anyway, just to take up time
    $this->hash_password($password);

    $this->increase_login_attempts($identity);

    $this->trigger_events('post_login_unsuccessful');
    $this->set_error('login_unsuccessful');

    return FALSE;
}

彼らがそこで使用しているクエリに問題があるのではないかと思っています。CI_DB_mysql_driver に関するリードは役に立ちます...

前もって感謝します!

4

2 に答える 2