首選在配置檔案中加入配置如下
值得注意的是該配置檔案必須是所有模組的而不是單個的模組的
目錄結構圖如下
// 請求異常
//todo::開發者對異常的操作
if($e->getstatuscode()=='404')
//可以在此交由系統處理
return parent::render($e);}}
然後就可以在編碼中捕捉異常了
trycatch(\exception $e)
$this->success('執行成功!');
tp5中的配置機制
如果在index.php初始化中調整配置路徑,那麼extra資料夾也要調整到那個路徑中去。讀取配置檔案 file index.php date 2016 8 23 16 03 10 author zhenxun du 5552123 qq.com version svn id use think c...
TP5偽靜態配置
為專案配置虛擬網域名稱 nginx 1 phpstudy 配置 站點網域名稱管理 正確配置指向應用專案 生成相應的配置檔案引數 本地配置host檔案 伺服器配置網域名稱 2 在nginx的conf裡面的vhosts.conf中找到剛剛生成的配置檔案引數在location 裡面配置 if e kate...
tp5自定義異常處理
1.傳統模式自定義異常處理 定義model層分母為0的異常資訊 url api model index.php use think exception class index catch exception ex return true 定義controller層index資訊 use think ...