精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

CakePHP 錯誤和異常處理

cakephp 錯誤和異常處理

 

為了系統的順利運行,需要有效地處理系統的故障。 cakephp 帶有默認的錯誤捕獲,它會在錯誤發生時打印并記錄錯誤。相同的錯誤處理程序用于捕獲 異常

錯誤處理程序在調試為真時顯示錯誤并在調試為假時記錄錯誤。 cakephp 有許多異常類,內置的異常處理將捕獲任何未捕獲的異常并呈現有用的頁面。

 

錯誤和異常配置

錯誤和異常可以在文件 config\app.php 中配置。錯誤處理接受一些允許您為應用程序定制錯誤處理的選項:

選項 數據類型 說明
errorlevel int

您有興趣捕獲的錯誤級別。使用內置的 php 錯誤常量和位掩碼來選擇您感興趣的錯誤級別。

trace bool

在日志文件中包含錯誤的堆棧跟蹤。每次錯誤后,堆棧跟蹤將包含在日志中。這有助于查找發生錯誤的位置/時間。

exceptionrenderer string

負責呈現未捕獲異常的類。如果您選擇 自定義 類,則應將該類的文件放在 src/error 中。這個類需要實現一個 render() 方法。

log bool

當為 true 時,異常 + 其堆棧跟蹤將被記錄到 cake\log\log

skiplog array

不應記錄的異常類名稱數組。這對于刪除 notfoundexceptions 或其他常見但無趣的日志消息很有用。

extrafatalerrormemory int

設置為在遇到致命錯誤時增加內存限制的兆字節數。這為完成日志記錄或錯誤處理提供了喘息空間。

 

示例

config/routes.php 文件中進行更改,如以下代碼所示。

config/routes.php

use cake\http\middleware\csrfprotectionmiddleware;
use cake\routing\route\dashedroute;
use cake\routing\routebuilder;
$routes--->setrouteclass(dashedroute::class);
$routes->scope('/', function (routebuilder $builder) {
   $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
      'httponly' => true,
   ]));
   $builder->applymiddleware('csrf');
   //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']);
   $builder->connect('/exception/:arg1/:arg2',
      ['controller'=>'exps','action'=>'index'],
      ['pass' => ['arg1', 'arg2']]);
   $builder->fallbacks();
});

src/controller/expscontroller.php 中創建 expscontroller.php 文件。 將以下代碼復制到控制器文件中。

src/controller/expscontroller.php

   namespace app\controller;
   use app\controller\appcontroller;
   use cake\core\exception\exception;
   class expscontroller extends appcontroller {
      public function index($arg1,$arg2) {
         try{
            $this--->set('argument1',$arg1);
            $this->set('argument2',$arg2);
            if(($arg1 > 1 || $arg1 > 10) || ($arg2 < 1 || $arg2 > 10))
               throw new exception("one of the number is out of range [1-10].");
         } catch(\exception $ex){
            echo $ex->getmessage();
         }
      }
   }
?>

src/template 創建一個 exps 目錄,然后在該目錄下創建一個名為index.php 的 view 文件。將以下代碼復制到該文件中。

src/template/exps/index.php

this is cakephp tutorial and this is an example of passed arguments.

argument-1: <!--?=$argument1

argument-2:                 
相關文章