為什么說(shuō)非對(duì)象調(diào)用成員函數(shù)fetch()
問(wèn)題描述
<?phpclass Db{ private $dbConfig=['db'=>'mysql','host'=>'localhost','port'=>'3306','user'=>'root','pass'=>'root','charset'=>'utf8','dbname'=>'edu',]; //單例模式 private static $instance = null; public $insertID = null; public $num1 = null; ///數(shù)據(jù)庫(kù)的連接 private $conn = null; private function __construct($params) {//初始化參數(shù)array_merge($this->dbConfig, $params);//連接數(shù)據(jù)庫(kù)$this->connect(); } private function __clone() {// TODO: Implement __clone() method. } public static function getInstance($params=[]) {if(!self::$instance instanceof self){ self::$instance = new self($params);}return self::$instance; } private function connect() {try {$dsn="{$this->dbConfig['db']}:host={$this->dbConfig['host']};port={$this->dbConfig['port']};dbname={$this->dbConfig['dbname']};charset={$this->dbConfig['charset']}";//創(chuàng)建pdo對(duì)象$this->conn= new PDO($dsn,$this->dbConfig['user'],$this->dbConfig['pass']); //// $this->conn->query("SET NAMES {$this->dbConfig['charset']}");}catch (PDOException $e){ die('數(shù)據(jù)庫(kù)連接失敗'.$e->getMessage());} } public function exec($sql) {$num = $this->conn->exec($sql);if($num>0){ if(null !== $this->conn->lastInsertID()) {$this->insertID = $this->conn->lastInsertID(); } $this->num1= $num;}else{ $error = $this->conn->errorInfo(); //0 是錯(cuò)誤標(biāo)識(shí)符 1 是錯(cuò)誤代碼 2 是錯(cuò)誤信息 print '操作失敗'.$error[0].':'.$error[1].':'.$error[2];} } public function fetch($sql) {return $this->conn->query($sql)->fetch(PDO::FETCH_ASSOC); } public function fetchALl($sql) {return $this->conn->query($sql)->fetch(PDO::FETCH_ASSOC);; }}
問(wèn)題解答
回答1:pdo對(duì)象沒(méi)有獲取成功,調(diào)用了一個(gè)對(duì)象成員方法fetch, 檢查連接參數(shù)
相關(guān)文章:
1. 開(kāi)了mc服務(wù)器但是不會(huì)全服同步數(shù)據(jù)2. php自學(xué)從哪里開(kāi)始?3. PHP單例模式4. 導(dǎo)入數(shù)據(jù)庫(kù)不成功5. 老師 我是一個(gè)沒(méi)有學(xué)過(guò)php語(yǔ)言的準(zhǔn)畢業(yè)生 我希望您能幫我一下6. Thinkphp 下載地址找不到了?7. index.php錯(cuò)誤,求指點(diǎn)8. nginx 504 Gateway Time-out 請(qǐng)問(wèn)如何設(shè)置9. 在cmd下進(jìn)入mysql數(shù)據(jù)庫(kù),可以輸入中文,但是查看表信息,不顯示中文,是怎么回事,怎新手,請(qǐng)老師10. mysql如何配置遠(yuǎn)程php外網(wǎng)鏈接數(shù)據(jù)庫(kù)
