2022年7月3日 星期日

Larevel 5.4 以後,設定 DB 的 fetch mode 為 PDO::FETCH_ASSOC

參考網址

Go to: app/Providers/EventServiceProvider.php

Add this to the top of the file:

use Illuminate\Database\Events\StatementPrepared;

In the boot method add:

Event::listen(StatementPrepared::class, function ($event) {
    $event->statement->setFetchMode(\PDO::FETCH_ASSOC);
});

In t

沒有留言:

張貼留言

網誌存檔