黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

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() 函數(shù)在屏幕頂部以 html 格式顯示錯誤。
  • 語法

    show_error($message, $status_code, $heading = '遇到錯誤')

    parameters

  • $message (mixed)-錯誤信息
  • $status_code (int)-http 響應(yīng)狀態(tài)代碼
  • $heading (string)-錯誤頁面標(biāo)題
  • return type

    mixed
  • show_404() 如果您嘗試訪問不存在的頁面,則函數(shù)會顯示錯誤。
  • 語法

    show_404($page = '', $log_error = true)

    parameters

  • $page (string) – uri 字符串
  • $log_error (bool) – 是否記錄錯誤
  • return type

    void
  • log_message() 函數(shù)用于寫入日志消息。當(dāng)您想編寫自定義消息時,這很有用。
  • 語法

    log_message($level, $message, $php_error = false)

    parameters

  • $level (string)-日志級別:"錯誤"、"調(diào)試"或"信息"
  • $message (string)-要記錄的消息
  • $php_error (bool)-是否記錄原生 php 錯誤消息
  • 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/cliapplication/views/errors/html 中找到各種錯誤消息模板。

    下一節(jié):codeigniter 文件上傳

    codeigniter 教程

    相關(guān)文章