首頁 > 後端開發 > PHP問題 > php運行出現mode must be an integer,該如何解決?

php運行出現mode must be an integer,該如何解決?

autoload
發布: 2023-03-08 17:22:01
原創
2303 人瀏覽過

今天在寫自訂mvc框架的時候遇到一個問題:

   SQLSTATE[HY000]: General error: mode must be an integer

#   下方貼上程式碼:

//这是报错位置的代码
public function dao_query($sql,$all = true){
        try{
            $stmt = $this->pdo->query($sql);

            //设置fetch_mode
            
            
             $stmt->setFetchMode($this->fetch_mode);//这里报错
            //解析数据
            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
登入後複製

       這裡標註$fetch_style必須為##int#int#int# ,後來我直接將$this->fetch_mode直接改成PDO::FETCH_ASSOC,發現運作成功,後來翻到我的config裡面儲存的竟然是個字串型別:<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">&amp;#39;database&amp;#39;=&gt;array( &amp;#39;type&amp;#39;=&gt;&amp;#39;mysql&amp;#39;, &amp;#39;host&amp;#39;=&gt;&amp;#39;localhost&amp;#39;, &amp;#39;port&amp;#39;=&gt;&amp;#39;3306&amp;#39;, &amp;#39;user&amp;#39;=&gt;&amp;#39;root&amp;#39;, &amp;#39;pass&amp;#39;=&gt;&amp;#39;root&amp;#39;, &amp;#39;charset&amp;#39;=&gt;&amp;#39;utf8&amp;#39;, &amp;#39;dbname&amp;#39;=&gt;&amp;#39;my_database&amp;#39;, &amp;#39;fetch_mode&amp;#39;=&gt;&amp;#39;PDO::FETCH_ASSOC&amp;#39;,//这里的问题 &amp;#39;prefix&amp;#39;=&gt;&amp;#39;&amp;#39; ),</pre><div class="contentsignin">登入後複製</div></div>          不過為了美觀,我還是決定不改

config

了,於是................:<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"> $stmt-&gt;setFetchMode(constant($this-&gt;fetch_mode));//这里必须使用int $model constant($this-&gt;fetch_mode)</pre><div class="contentsignin">登入後複製</div></div>          文檔的解釋:

constant    ( string $name   ) : mixed
登入後複製

透過name

傳回常數的值。 當你不知道常數名,卻需要取得常數的值時,

constant()

就很有用了。也就是常數名儲存在一個變數裡,或是由函數傳回常數名。 傳回常數的值。如果常數未定義則傳回

NULL

推薦:

php影片教學

以上是php運行出現mode must be an integer,該如何解決?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板