PHP OO数据库无法获取mysqli

时间:2015-02-16 21:15:53

标签: php database oop mysqli

我最近遇到了一个我一直在使用的数据库类的问题,我的类在获取mysqli方面遇到了一些麻烦。这里有一些课程,所以请耐心等待。有一个名为Manager的类连接到DB并进行设置,然后实例化一个名为Business的新类并传入DB,然后在代码执行中运行一个Manager方法,要求Business将一些数据保存到DB这就是问题所在。 数据库类如下,敏感信息编辑:

namespace Lib;

define('_DBHOST', 'localhost');
define('_DBUSER', '***');
define('_DBPASS', '***');
define('_DBNAME', '***');

class DB_Conn {
    protected $DB;

    function __construct() { 
       $this->connect();
    }

    protected function connect() {
        $this->DB = new \mysqli(_DBHOST, _DBUSER, _DBPASS, _DBNAME);         

        if($this->DB == false) {
           die(mysqli_connect_error());
        } 
    }

    function __destruct() {
        $this->DB->close();
    }

    function getDB() { 

        if (!isset($this->DB)) { echo "connecting...<br />";
            $this->connect();
        }          
        return $this->DB;

    }

}

这是Manager类:

class Manager {
    public $mysqli;
    private $businessMan;

    public function __construct() {
        //Grab database and connect to it
        $database = new \Lib\DB_Conn();
        $this->mysqli = $database->getDB();

        $this->businessMan = new \Lib\Business($this->mysqli);
    }       

    public function submitForm($data) { 

            //Save Data
            if($this->businessMan->addBusiness($data)) {
                echo "Yay";
            } else {
                echo "NO!";
            }

    }
}

这是商务舱

namespace Lib;    
class Business {
    var $mysqli;
    var $database;
    function __construct($mysqli) {
        $this->database = $mysqli;          
    }

    function addBusiness($data)
    {           
        $stmt = $this->database->prepare("INSERT INTO reboot_business(business_name) VALUES (?)");
        //Here $stmt is NULL

        //Bind the values from the array to the prepared statement
        $stmt->bind_param('s', $data['values']['name']);            

        //Execute the prepared statement and display any error
        if (!$stmt->execute()) {
            var_dump($stmt->error);
            //exit();
            return false;
        } else {
            //Succcess add ID to variable    
            return true;
        }                       
    }
}

我仔细检查了SQL语句,这很好,实际错误发生在我使用mysqli-&gt; prepare函数的上面Business类中。错误是:

警告:mysqli :: prepare():无法获取mysqli
致命错误:在非对象上调用成员函数bindParam()

我还检查了$ stmt变量,这是NULL,所以看起来问题在于获取mysqli

我错过了什么或者我做错了吗?

我能够通过在Business构造函数中创建DB_Conn类的新实例来使其工作,但这看起来不对,或者我应该这样做而不是让Manager类处理DB完全没有?实际上,如果Manager类正在执行这个数据库的东西,而它本身并不需要它,那么从OO的角度来看是错误的吗?

希望我有意义并感谢任何帮助。

在做了一些额外的调试之后,我发现在Business构造函数中,mysqli都是精确输出,没有错误,看起来它正在工作。

修改
但是在我的addBusiness()方法中,我得到一些有趣的输出,我使用var_dump($ this-&gt;数据库),我得到大约16个错误:警告:var_dump():不允许属性访问。
在我的代码中没有任何循环工作在哪里,这使得它出现了16次,然后当它最终工作时var_dump报告所有空值:
object(mysqli)#12 (19) { ["affected_rows"]=> NULL ["client_info"]=> NULL ["client_version"]=> int(50010) ["connect_errno"]=> int(0) ["connect_error"]=> NULL ["errno"]=> NULL ["error"]=> NULL ["error_list"]=> NULL ["field_count"]=> NULL ["host_info"]=> NULL ["info"]=> NULL ["insert_id"]=> NULL ["server_info"]=> NULL ["server_version"]=> NULL ["stat"]=> NULL ["sqlstate"]=> NULL ["protocol_version"]=> NULL ["thread_id"]=> NULL ["warning_count"]=> NULL }
什么很奇怪的是数据库属性在构造函数中是如何正常的,但在方法中是空的。任何想法为什么它被清空或设置为null?

2 个答案:

答案 0 :(得分:2)

错误是因为您正在尝试访问数据库连接的非设置变量。

在您的Business构造函数中,您声明:

$this->database = $mysqli;        

但是你正试图访问你的MYSQLi连接:

$stmt = $this->mysqli->prepare()

您需要引用已建立的数据库变量,因此它将是:

$stmt = $this->database->prepare()

答案 1 :(得分:0)

问题是 $ database 变量中的'DB_Conn'超出了Manager中__construct()语句末尾的范围。这会触发关闭数据库的DB_Conn中的__destruct()。

答案:

将“_DB_Conn_”对象保存在 Manager-&gt;数据库属性中,而不是_DB_Conn_对象中的“PDO连接”。

新经理课程:

namespace Lib;

class Manager {

    public $database = null;

    private $businessMan;

    public function __construct() {
        //Grab database and connect to it
        $this->database = new \Lib\DB_Conn();

        $this->businessMan = new \Lib\Business($this->database->getDB());
    }

    public function submitForm($data) {

            //Save Data
            if($this->businessMan->addBusiness($data)) {
                echo "Yay";
            } else {
                echo "NO!";
            }

    }
}

说明:

错误发生在'Manager'的构造函数中。

public function __construct() {
    //Grab database and connect to it
    $database = new \Lib\DB_Conn();
    $this->mysqli = $database->getDB();

    $this->businessMan = new \Lib\Business($this->mysqli);
}


class DB_Conn {

    ...

    function __destruct() {
        var_dump(__CLASS__, __METHOD__, 'this should not happen until the end!');
        $this->DB->close();
    }

我重新创建了你的代码并运行它。我收到了这个错误:

Couldn't fetch mysqli in P:\developer\xampp\htdocs\testmysql\Q28550480\Business.php on line 15

这引出了我的评论:

The cryptic "Couldn't fetch mysqli" error message can mean any number of things, including:

  • 尝试使用已关闭的数据库......