php Yii: 出现undefined offset 或许 undefined index解决方案
程序员文章站
2024-04-05 15:12:00
...
php Yii: 出现undefined offset 或者 undefined index解决方案
在开发Yii?时,在程序中定义了如下方式:
???????if($this->menuoption[2]?===?'test'),那么在运行程序时会报:undefined?offset:2,这样的错误主要是由于php.ini?里的错误等级太高了,在windows下错误等级是:error_reporting?=??E_ALL?&?~E_NOTICE,这样就不会报错。而在Ubuntu系统里面,按照完php5之后,在/etc/php5/apache2/php.ini文件中定义的error_reporting值为:E_ALL?&?~E_DEPRECATED。
??????要解决此问题需要将error_reporting值设置为:E_ALL?&?~E_NOTICE。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
推荐阅读
-
PHP中出现Notice: Undefined index的三种解决办法_PHP教程
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享_PHP教程
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案_PHP
-
PHP中出现Notice: Undefined index的三种解决方法
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案_PHP
-
PHP中Notice: Undefined index: sku in 有关问题解决方案
-
php运行环境出现Undefined index 或variable时解决方法_PHP教程
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
-
PHP中出现Notice: Undefined index的三种解决办法
-
PHP报错 Notice: Undefined index和Notice:Undefined offset:解决方法
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论