CodeIgniter 錯誤處理
codeigniter 錯誤處理
很多時候,在使用應(yīng)用程序時,我們會遇到錯誤。如果錯誤處理不當(dāng),對用戶來說是非常煩人的。 codeigniter 提供了一種簡單的錯誤處理機(jī)制。
您希望在應(yīng)用程序處于開發(fā)模式而不是生產(chǎn)模式時顯示消息,因為錯誤消息可以在開發(fā)階段輕松解決。
通過更改 index.php 文件中下面給出的行,可以更改應(yīng)用程序的環(huán)境。這可以設(shè)置為任何值,但通常有三個值(開發(fā)、測試、生產(chǎn))用于此目的。
define('environment', isset($_server['ci_env']) ? $_server['ci_env'] : 'development');
不同的環(huán)境將需要不同級別的錯誤報告。默認(rèn)情況下,開發(fā)模式將顯示錯誤,測試和實時模式將隱藏它們。 codeigniter 提供了如下三個函數(shù)來處理錯誤。
語法 |
show_error($message, $status_code, $heading = '遇到錯誤') |
parameters |
|
return type |
mixed |
語法 |
show_404($page = '', $log_error = true) |
parameters |
|
return type |
void |
語法 |
log_message($level, $message, $php_error = false) |
parameters |
|
return type |
void |
可以在 application/config/config.php 文件中啟用日志記錄。下面是config.php文件的截圖,可以設(shè)置閾值。
/* |-------------------------------------------------------------------------------- | error logging threshold |-------------------------------------------------------------------------------- | you can enable error logging by setting a threshold over zero. the | threshold determines what gets logged. threshold options are: | | 0 = disable logging, error logging turned off | 1 = error message (including php errors) | 2 = debug message | 3 = informational messages | 4 = all messages | | you can also pass an array with threshold levels to show individual error types | | array(2) = debug message, without error messages | for a live site you'll usually only enable errors (1) to be logged otherwise | your log files will fill up very fast. | */ $config['log_threshold'] = 0;
您可以在 application/log/ 中找到日志消息。在啟用日志文件之前,請確保此目錄可寫。
可以在 application/views/errors/cli 或 application/views/errors/html 中找到各種錯誤消息模板。
相關(guān)文章