您好,登錄后才能下訂單哦!
小編給大家分享一下遇到SQLSTATE[HY000]: General error: mode must be an integer的問題怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
今天在寫自定義mvc框架的時(shí)候遇到一個(gè)問題:
SQLSTATE[HY000]: General error: mode must be an integer
下面貼上代碼:
//這是報(bào)錯(cuò)位置的代碼 public function dao_query($sql,$all = true){ try{ $stmt = $this->pdo->query($sql); //設(shè)置fetch_mode $stmt->setFetchMode($this->fetch_mode);//這里報(bào)錯(cuò) //解析數(shù)據(jù) if(!$all){ return $stmt->fetch(); }else{ return $stmt->fetchAll(); } }catch(PDOException $e){ $this->dao_exception($e); } }
代碼提示:General error: mode must be an integer,我又去翻了一下文檔
PDOStatement::fetchAll([ int $fetch_style [, mixed $fetch_argument [, array $ctor_args = array() ]]] ) : array
這里標(biāo)注$fetch_style
必須為int
型,后來我直接將$this->fetch_mode
直接改成PDO::FETCH_ASSOC
,發(fā)現(xiàn)運(yùn)行成功,后來翻到我的config
里面存儲(chǔ)的竟然是個(gè)字符串類型:
'database'=>array( 'type'=>'mysql', 'host'=>'localhost', 'port'=>'3306', 'user'=>'root', 'pass'=>'root', 'charset'=>'utf8', 'dbname'=>'my_database', 'fetch_mode'=>'PDO::FETCH_ASSOC',//這里的問題 'prefix'=>'' ),
不過為了美觀,我還是決定不改config
了,于是................:
$stmt->setFetchMode(constant($this->fetch_mode));//這里必須使用int $model constant($this->fetch_mode)
文檔的解釋:
constant ( string $name ) : mixed
通過 name
返回常量的值。
當(dāng)你不知道常量名,卻需要獲取常量的值時(shí),constant()
就很有用了。也就是常量名儲(chǔ)存在一個(gè)變量里,或者由函數(shù)返回常量名。
返回常量的值。如果常量未定義則返回 NULL
。
看完了這篇文章,相信你對(duì)“遇到SQLSTATE[HY000]: General error: mode must be an integer的問題怎么辦”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。