我有这个类用于使用/连接到mysql数据库:phpmysqli
class AuthDB {
    private $_db;
    public function __construct() {
        $this->_db = new mysqli(DB_SERVER, DB_USER, DB_PASS, DB_NAME)
        or die("Problem connect to db. Error: ". mysqli_error());
    }
    public function __destruct() {
        $this->_db->close();
        unset($this->_db);
    }
}
现在,我有列表用户的任何页面:
require_once 'classes/AuthDB.class.php';
session_start();
$this->_db = new AuthDB(); // error For This LINE
$query = "SELECT Id, user_salt, password, is_active, is_verified FROM Users where email = ?";
$stmt = $this->_db->prepare($query);
        //bind parameters
        $stmt->bind_param("s", $email);
        //execute statements
        if ($stmt->execute()) {
            //bind result columnts
            $stmt->bind_result($id, $salt, $pass, $active, $ver);
            //fetch first row of results
            $stmt->fetch();
            echo $id;
        }
现在,我看到了这个错误:
Fatal error: Using $this when not in object context in LINE 6
如何解决这个错误?!