首頁  >  文章  >  php框架  >  yii關閉錯誤提示

yii關閉錯誤提示

(*-*)浩
(*-*)浩原創
2019-11-05 14:39:362766瀏覽

yii關閉錯誤提示

在php.ini檔案中改動error_reporting改為:      (建議學習:yii教學

error_reporting=E_ALL & ~E_NOTICE

如果你無法操作php.ini文件,你可以使用以下方法在你想要禁止notice錯誤提示的頁面中加入以下程式碼:

/* Report all errors except E_NOTICE */
error_reporting(E_ALL^E_NOTICE);

使用以上方法,YII的入口文件中protected/index.php

error_reporting(E_ALL^E_NOTICE);
// change the following paths if necessary
$yii=dirname(__FILE__).'/../framework/yii.php';
$config=dirname(__FILE__).'/protected/config/main.php';
 
//引用系统常量配置文件
require_once dirname(__FILE__).'/protected/config/constant.php';
 
// remove the following lines when in production mode
defined('YII_DEBUG') or define('YII_DEBUG',true);
// specify how many levels of call stack should be shown in each log message
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
 
require_once($yii);
Yii::createWebApplication($config)->run();

以上是yii關閉錯誤提示的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn