cakephp 錯(cuò)誤和異常處理
為了系統(tǒng)的順利運(yùn)行,需要有效地處理系統(tǒng)的故障。 cakephp 帶有默認(rèn)的錯(cuò)誤捕獲,它會(huì)在錯(cuò)誤發(fā)生時(shí)打印并記錄錯(cuò)誤。相同的錯(cuò)誤處理程序用于捕獲 異常。
錯(cuò)誤處理程序在調(diào)試為真時(shí)顯示錯(cuò)誤并在調(diào)試為假時(shí)記錄錯(cuò)誤。 cakephp 有許多異常類(lèi),內(nèi)置的異常處理將捕獲任何未捕獲的異常并呈現(xiàn)有用的頁(yè)面。
錯(cuò)誤和異常配置
錯(cuò)誤和異??梢栽谖募? config\app.php 中配置。錯(cuò)誤處理接受一些允許您為應(yīng)用程序定制錯(cuò)誤處理的選項(xiàng):
選項(xiàng) | 數(shù)據(jù)類(lèi)型 | 說(shuō)明 |
errorlevel | int |
您有興趣捕獲的錯(cuò)誤級(jí)別。使用內(nèi)置的 php 錯(cuò)誤常量和位掩碼來(lái)選擇您感興趣的錯(cuò)誤級(jí)別。 |
trace | bool |
在日志文件中包含錯(cuò)誤的堆棧跟蹤。每次錯(cuò)誤后,堆棧跟蹤將包含在日志中。這有助于查找發(fā)生錯(cuò)誤的位置/時(shí)間。 |
exceptionrenderer | string |
負(fù)責(zé)呈現(xiàn)未捕獲異常的類(lèi)。如果您選擇 自定義 類(lèi),則應(yīng)將該類(lèi)的文件放在 src/error 中。這個(gè)類(lèi)需要實(shí)現(xiàn)一個(gè) render() 方法。 |
log | bool |
當(dāng)為 true 時(shí),異常 + 其堆棧跟蹤將被記錄到 cake\log\log。 |
skiplog | array |
不應(yīng)記錄的異常類(lèi)名稱(chēng)數(shù)組。這對(duì)于刪除 notfoundexceptions 或其他常見(jiàn)但無(wú)趣的日志消息很有用。 |
extrafatalerrormemory | int |
設(shè)置為在遇到致命錯(cuò)誤時(shí)增加內(nèi)存限制的兆字節(jié)數(shù)。這為完成日志記錄或錯(cuò)誤處理提供了喘息空間。 |
示例
在 config/routes.php 文件中進(jìn)行更改,如以下代碼所示。
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 中創(chuàng)建 expscontroller.php 文件。 將以下代碼復(fù)制到控制器文件中。
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 創(chuàng)建一個(gè) exps 目錄,然后在該目錄下創(chuàng)建一個(gè)名為index.php 的 view 文件。將以下代碼復(fù)制到該文件中。
src/template/exps/index.php
this is cakephp tutorial and this is an example of passed arguments. argument-1: <!--?=$argument1 argument-2:
- CodeIgniter 庫(kù)
- CodeIgniter 表單驗(yàn)證
- CodeIgniter 會(huì)話(huà)管理
- CodeIgniter 添加JS和CSS
- CodeIgniter 國(guó)際化
- CodeIgniter 安全
- CakePHP 視圖
- CakePHP 使用數(shù)據(jù)庫(kù)
- CakePHP 更新記錄
- CakePHP 表單處理
- CakePHP 日期和時(shí)間
- CakePHP 文件上傳
- FuelPHP 配置
- FuelPHP HMVC 請(qǐng)求
- FuelPHP 模塊
- Laravel 響應(yīng)
- Laravel Blade 模板
- Laravel 使用數(shù)據(jù)庫(kù)
- Laravel session
- Laravel Artisan控制臺(tái)