php教程 yii关闭错误提示

 所属分类:php教程

 浏览:91次-  评论: 0次-  更新时间:2022-06-01
描述:这是一篇php教程 yii关闭错误提示的说明内容,如果你想学习查找类似的文章,可以进入php教程获得最新优质资料。 在php.ini文件中改动error...
这是一篇php教程 yii关闭错误提示的说明内容,如果你想学习查找类似的文章,可以进入php教程获得最新优质资料。

在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关闭错误提示的详细内容,更多请关注zzsucai.com其它相关文章!

 标签:
积分说明:注册即送10金币,每日签到可获得更多金币,成为VIP会员可免金币下载! 充值积分充值会员更多说明»

讨论这个素材(0)回答他人问题或分享使用心得奖励金币

〒_〒 居然一个评论都没有……

表情  文明上网,理性发言!