我在使用以下代码获取数据库查询时遇到了一些麻烦。我是第一次使用类甚至 PDO 进行连接,所以不知道出了什么问题。据你所知,我不是那么熟练,但我正在努力学习课程,所以如果你能告诉我是否有什么可以改进的,我将不胜感激。
错误消息:致命错误:在 C:\ pat \ to\ class.php 的第 72 行调用非对象上的成员函数 query()
<?php
// get database connection
private static function _db_connect() {
try {
$db_con = new PDO('mysql:host='.$db_host.';dbname='.$db_name, $db_user, $db_pass);
$db_con = null;
} catch (PDOException $e) {
print "Error!" . $e->getMessage(). "<br/>";
}
}
// get database tables prefix
public static function prefix() {
$prefix = 'tb_'; // once done will be set dynamically
return $prefix;
}
// get all users from db
public static function get_users() {
$db = self::_db_connect();
$prf = self::prefix();
$st = $db->query('SELECT * FROM '.$prf.'users'); // this is the line #72 where error
while($row = $st->fetch(PDO::FETCH_ASSOC))
$rs[] = $row;
return count($rs) ? $rs : array();
}
?>
编辑:我在这里删除 null 并返回 PDO 对象
// get database connection
private static function _db_connect() {
try {
$db_con = new PDO('mysql:host='.$db_host.';dbname='.$db_name, $db_user, $db_pass);
return $db_con;
} catch (PDOException $e) {
print "Error!" . $e->getMessage(). "<br/>";
}
}
// get database tables prefix
public static function prefix() {
$prefix = 'tb_'; // once done will be set dynamically
return $prefix;
}
// get all users from db
public static function get_users() {
$db = self::_db_connect();
$prf = self::prefix();
$st = $db->query('SELECT * FROM '.$prf.'users'); // this is the line #72 where error
while($row = $st->fetch(PDO::FETCH_ASSOC))
$rs[] = $row;
return count($rs) ? $rs : array();
}
?>