您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php如何忽略所有錯誤,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
本教程操作環境:windows7系統、PHP7.1版、DELL G3電腦
在php中,我們可以使用錯誤控制運算符@
或error_reporting()函數屏蔽單行或者單個文件,但要如何屏蔽所有錯誤呢?下面給大家介紹一下。
php忽略所有錯誤的方法
1、進入PHP安裝目錄,找到并打開 php.ini 配置文件
2、搜索 display_errors
3、然后將 display_errors 的值設置為 Off 即可關閉所有的 PHP 錯誤報告。
如下所示:
; This directive controls whether or not and where PHP will output errors, ; notices and warnings too. Error output is very useful during development, but ; it could be very dangerous in production environments. Depending on the code ; which is triggering the error, sensitive information could potentially leak ; out of your application such as database usernames and passwords or worse. ; For production environments, we recommend logging errors rather than ; sending them to STDOUT. ; Possible Values: ; Off = Do not display any errors ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout = Display errors to STDOUT ; Default Value: On ; Development Value: On ; Production Value: Off ; http://php.net/display-errors display_errors = Off
關于“php如何忽略所有錯誤”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。