我已经开始学习如何使用 OOP 并创建了一个用户授权类来检查用户是否存在等。目前我使用$dbh
作为 PDO 连接的全局变量连接到数据库。我听说以这种方式使用全局变量不是一个好习惯,但我不确定如何改进它,我是否只是将$dbh
变量传递给在连接到数据库时需要它的方法,以及为什么不考虑这一点好的做法?
这是我正在使用的一些代码:
调用程序中包含的数据库 PDO 连接:
//test the connection
try{
//connect to the database
$dbh = new PDO("mysql:host=localhost;dbname=oopforum","root", "usbw");
//if there is an error catch it here
} catch( PDOException $e ) {
//display the error
echo $e->getMessage();
}
需要数据库连接的类:
class Auth{
private $dbh;
function __construct(){
global $dbh;
$this->dbh = $dbh;
}
function validateLogin($username, $password){
// create query (placing inside if statement for error handling)
if($stmt = $this->dbh->prepare("SELECT * FROM oopforumusers WHERE username = ? AND password = ?")){
$stmt->bind_param(1, $username);
$stmt->bind_param(2, $password);
$stmt->execute();
// Check rows returned
$numrows = $stmt->rowCount();
//if there is a match continue
if( $numrows > 0 ){
$stmt->close();
return TRUE;
}else{
$stmt->close();
return FALSE;
}
}else{
die('ERROR: Could not prepare statement');
}
}
function checkLoginStatus(){
if(isset($_SESSION['loggedin'])){
return TRUE;
}else{
return FALSE;
}
}
function logout(){
session_destroy();
session_start();
}
}