我是第一次使用 PDO。我创建了这个方法,我收到了这个错误:
Call to a member function rowCount() on a non-object
以下是我的代码。
$db = new PDO("mysql:host=$dbhost;dbname=$dbname;charset=utf8", $dbuser, $dbpassword)
function doesRecordExist($query) {
global $db;
try {
$stmt = $db->query($query);
$count = $stmt->rowCount();
return $count;
} catch (PDOException $ex) {
die($ex->getMessage());
}
}
你能帮我吗