Fatal error: Call to undefined method CI_DB_mysql_driver::num_rows() in C:\Development\Zend\Apache2\htdocs\system\application\controllers\signup.php on line 47
任何人都可以帮助我,这个错误让我发疯。使用最新的CodeIgniter。
function isUniqueUsername($string) {
$query = $this->db->select('username')
->from('olm_user')
->where('username', $string);
if ($query->num_rows()) {
return false;
} else {
return true;
}
}
答案 0 :(得分:11)
你错过了一个 - > get():)
$query = $this->db->select('username')
->from('olm_user')
->where('username', $string)
->get();
执行查询并在调用get()后返回结果对象。然后你可以调用那个对象num_rows()或其他方法。