php檢視錯誤的方法:1、通過設定【php.ini】中的引數設定PHP的報錯級別可以在php.ini中適當的位置增加一行;2、通過PHP函數【error_reporting】設定PHP報錯級別。
php檢視錯誤的方法:
一、通過設定php.ini中的引數設定PHP的報錯級別可以在php.ini中適當的位置增加一行
error_reporting=E_ALL CODE:[COPY] error_reporting=E_ALL
注:php.ini中實現給出了一些例子,比如我原生的php.ini中就有如下
;Examples:
;-Show all errors,except for notices and coding standards warnings
;error_reporting=E_ALL&~E_NOTICE
;-Show all errors,except for notices
;error_reporting=E_ALL&~E_NOTICE|E_STRICT
;-Show only errors
;error_reporting=E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
;-Show all errors except for notices and coding standards warnings
;error_reporting=E_ALL&~E_NOTICE
CODE:[COPY]
;Examples:
;-Show all errors,except for notices and coding standards warnings
;error_reporting=E_ALL&~E_NOTICE
;-Show all errors,except for notices
;error_reporting=E_ALL&~E_NOTICE|E_STRICT
;-Show only errors
;error_reporting=E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
;-Show all errors except for notices and coding standards warnings
;error_reporting=E_ALL&~E_NOTICE
我只要在這些行程式碼的下面增加error_reporting=E_ALL然後重新啟動web服務就可以了
二、通過PHP函數error_reporting設定PHP報錯級別
如果你無權修改php.ini中的引數設定,你可以通過這個函數來設定報錯級別。
error_reporting()函數使用方法
error_reporting(report_level)
如果引數level未指定,當前報錯級別將被返回。
任意數目的以上選項都可以用「或」來連線(用OR或|),這樣可以報告所有需要的各級別錯誤。例如,下面的程式碼關閉了使用者自定義的錯誤和警告,執行了某些操作,然後恢復到原始的報錯級別:
//禁用錯誤報告
error_reporting(0);
//報告執行時錯誤
error_reporting(E_ERROR|E_WARNING|E_PARSE);
//報告所有錯誤
error_reporting(E_ALL);
CODE:[COPY]
//禁用錯誤報告
error_reporting(0);
//報告執行時錯誤
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//報告所有錯誤
error_reporting(E_ALL);
那麼我們就可以把論壇裡的include/common.inc.php檔案裡的
error_reporting(0); CODE:[COPY] error_reporting(0);
修改成
error_reporting(E_ALL); CODE:[COPY] error_reporting(E_ALL);
然後儲存,這樣就可以看到 PHP 報告的錯誤資訊了
想了解更多程式設計學習,敬請關注欄目!
以上就是php如何檢視錯誤的詳細內容,更多請關注TW511.COM其它相關文章!