How to turn off mysql errors from being displayed to screen in CodeIgniter

前端 未结 4 1202
臣服心动
臣服心动 2021-02-04 00:33

Even though error_reporting is set to 0, database errors are still being printed to screen. Is there a setting somewhere I can change to disable database error reporting? This i

4条回答
  •  长发绾君心
    2021-02-04 00:59

    Found the answer:

    In config/database.php:

    // ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
    

    so:

    $db['default']['db_debug'] = FALSE;
    

    ... should disable.

提交回复
热议问题