yii关闭错误提示

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

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 modedefined('YII_DEBUG') or define('YII_DEBUG',true);// specify how many levels of call stack should be shown in each log messagedefined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); require_once($yii);Yii::createWebApplication($config)->run();
登录后复制

以上就是yii关闭错误提示的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。

作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:thinkphp参数不正确问题如何解决
下一篇:asp.net开发微信公众平台(3)微信消息封装及反射赋值

发表评论

关闭广告
关闭广告