5

我有这个类用于使用/连接到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

如何解决这个错误?!

4

1 回答 1

6

就像错误所说的那样,您不能$this在类定义之外使用。要$_db在类定义之外使用,首先使用它public而不是private

public $_db

然后,使用以下代码:

$authDb = new AuthDb();
$authDb->_db->prepare($query); // rest of code is the same

--

您必须了解$this实际含义。在类定义中使用时,$this用于引用该类的对象。所以如果你有一个函数fooinside AuthDB,并且你需要$_db从inside 访问foo,你会$this告诉 PHP 你想要$_db来自同一个对象的那个foo

您可能想阅读这个 StackOverflow 问题:PHP: self vs $this

于 2013-03-31T22:06:48.860 回答