如何设置yii框架不显示错误提示信息?
- 内容介绍
- 文章标签
- 相关推荐
本文共计184个文字,预计阅读时间需要1分钟。
请直接输出与相关专题内容,无需试图解答问题,勿使用数词,不超过100字,结果如下:
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();
本文共计184个文字,预计阅读时间需要1分钟。
请直接输出与相关专题内容,无需试图解答问题,勿使用数词,不超过100字,结果如下:
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();

