codeigniter 錯(cuò)誤處理
很多時(shí)候,在使用應(yīng)用程序時(shí),我們會(huì)遇到錯(cuò)誤。如果錯(cuò)誤處理不當(dāng),對(duì)用戶來(lái)說(shuō)是非常煩人的。 codeigniter 提供了一種簡(jiǎn)單的錯(cuò)誤處理機(jī)制。
您希望在應(yīng)用程序處于開(kāi)發(fā)模式而不是生產(chǎn)模式時(shí)顯示消息,因?yàn)殄e(cuò)誤消息可以在開(kāi)發(fā)階段輕松解決。
通過(guò)更改 index.php 文件中下面給出的行,可以更改應(yīng)用程序的環(huán)境。這可以設(shè)置為任何值,但通常有三個(gè)值(開(kāi)發(fā)、測(cè)試、生產(chǎn))用于此目的。
define('environment', isset($_server['ci_env']) ? $_server['ci_env'] : 'development');
不同的環(huán)境將需要不同級(jí)別的錯(cuò)誤報(bào)告。默認(rèn)情況下,開(kāi)發(fā)模式將顯示錯(cuò)誤,測(cè)試和實(shí)時(shí)模式將隱藏它們。 codeigniter 提供了如下三個(gè)函數(shù)來(lái)處理錯(cuò)誤。
語(yǔ)法 |
show_error($message, $status_code, $heading = '遇到錯(cuò)誤') |
parameters |
|
return type |
mixed |
語(yǔ)法 |
show_404($page = '', $log_error = true) |
parameters |
|
return type |
void |
語(yǔ)法 |
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/ 中找到日志消息。在啟用日志文件之前,請(qǐng)確保此目錄可寫(xiě)。
可以在 application/views/errors/cli 或 application/views/errors/html 中找到各種錯(cuò)誤消息模板。
- CodeIgniter 教程
- CodeIgniter 安裝
- CodeIgniter 應(yīng)用程序架構(gòu)
- CodeIgniter MVC 框架
- CodeIgniter 基本概念
- CodeIgniter 配置
- CodeIgniter 使用數(shù)據(jù)庫(kù)
- CodeIgniter 庫(kù)
- Laravel session
- Laravel 驗(yàn)證
- Laravel Facades
- Laravel 契約
- Laravel CSRF保護(hù)
- Laravel 認(rèn)證
- Laravel Artisan控制臺(tái)
- Laravel 加密
- Laravel 哈希
- Laravel 歷史版本記錄