获得:
致命错误:在第27行调用未定义的方法UsersController :: select()application / models / User.php
看起来UsersController没有将select函数发送到我在库文件夹中的db.class.php。
正在加载db.class.php,但不是在这种情况下。
UserController.php类中的代码是:
class User extends Model
{
/**
* Login method
*
* @todo: update last_login_time
* @todo: add hashing
*/
public function user_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;
}
}
/**
* Log out process, deletes cookie, deletes session
*
* @todo implement rememberme cookie
*/
public function logout()
{
// set the remember-me-cookie to ten years ago (3600sec * 365 days * 10).
// that's obviously the best practice to kill a cookie via php
// @see http://stackoverflow.com/a/686166/1114320
//setcookie('rememberme', false, time() - (3600 * 3650), '/', COOKIE_DOMAIN);
Session::init();
// delete the session
Session::destroy();
}
}
在db.class.php中选择Function
public function select($table, $where="", $bind="", $fields="*") {
$sql = "SELECT " . $fields . " FROM " . $table;
if(!empty($where))
$sql .= " WHERE " . $where;
$sql .= ";";
return $this->run($sql, $bind);
}
我认为它可能是对$ this-> select()的引用,但我正在学习。
答案 0 :(得分:0)
出现此错误的原因是select()
,我所知道的不是User
,Model
或{{1}层次结构中的其他父级的方法}。
取而代之的是db.class.php。
鉴于当前代码,我建议将 DB 对象注入Model
/ User
,然后直接委托给该对象。
例如:
Model
然后,要解决错误,请在class Model {
public function __construct(DB $db) {
$this->db = $db;
}
}
执行:
User
注意:这是不完整的。所以你需要填写一些空白。既然你在学习,我建议你阅读:
此外, .class.php 是PHP 4中使用的旧命名约定。不要这样做。相反,请遵循PSR-4命名约定。