我连接到index.php
中的数据库,然后使用classes.php
导入我的require_once()
文件。但是,连接到数据库时,数据库连接未定义。
index.php
$dbh = new PDO("mysql:host=$hostname;dbname=$dbname",$username,$password);
require_once("inc/classes.php");
/* ..... */
if($_POST["form"]=="login"){
//Retrieve values
$e = $_POST["email"];
$p = $_POST["password"];
//Data validation
if(!filter_var($e, FILTER_VALIDATE_EMAIL)||strlen($e)<3) $errors->addError("email", "Please enter a valid email address.");
if(strlen($p)<1) $errors->addError("password", "Please enter a valid password");
$errors->killErrors();
//Log user in
$user = new User($e);
if(!$user->login($p)) $errors->addError("form", "Incorrect username or password.");
$errors->killErrors();
exit("success");
}
inc/classes.php
class User
{
public $id, $email, $data;
public function __construct($e = null){
if(isLoggedIn()){
$stmt = $dbh->prepare("SELECT * FROM `users` WHERE `id`=? LIMIT 1");
$stmt->execute(array($_SESSION["userid"]));
$this->data = $stmt->fetch(PDO::FETCH_ASSOC);
} else $this->email = $e;
}
public function login($p){
//Perform database query for user
$stmt = $dbh->prepare("SELECT `id`, `password` FROM `users` WHERE `email`=? LIMIT 1");
$stmt->execute(array($this->email));
if($stmt->rowCount()<1) return false;
//Check password is correct
$data = $stmt->fetch(PDO::FETCH_ASSOC);
if(!password_verify($p, $data["password"])) return false;
if(!$this->email) exit("User can only be logged in with an email address, not by User ID");
$this->id = $data["id"];
return $this->validate($this->id) ? true : false;
}
}
注意:未定义的变量: /var/www/html/foo/public_html/bar/inc/classes.php 中的dbh 80
致命错误:在 /var/www/html/foo/public_html/bar/inc/classes.php 上调用null上的成员函数prepare() 80
第80行是:
$stmt = $dbh->prepare("SELECT `id`, `password` FROM `users` WHERE `email`=? LIMIT 1");
如何在index.php
中包含数据库连接并让classes.php
文件接受该PDO对象?
答案 0 :(得分:5)
答案 1 :(得分:2)
http://php.net/manual/en/language.variables.scope.php - 正如@JayBlanchard所写,你需要将连接句柄作为全局变量引用。
但是,将依赖项传递到对象中会更加清晰。例如,在实例化用户时,您可以传递连接。
$user = new User($dbh, $e);
然后,您可以为连接句柄设置私有变量。这样,您可以在index.php中更改变量的名称,或者更改其实例化的方式,而不会因为其他文件中的更改而导致User类爆炸。