码迷,mamicode.com
首页 > Web开发 > 详细

Warning Creating default object from empty value in xxx.php

时间:2014-05-26 16:12:37      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   a   

PHP 提示 Creating default object from empty value 的问题,一般是由于PHP版升级的原因,PHP 5.4 以上的版本一般会报这个错误;

我的解决方法:找到报错的地方,初始化对象

$_obj = new stdClass();

 同理,数组也需要初始化

$_arr = array();

变量则不需要(我测试过)。

 

 

 

 

 

 

Warning Creating default object from empty value in xxx.php,布布扣,bubuko.com

Warning Creating default object from empty value in xxx.php

标签:style   c   class   blog   code   a   

原文地址:http://www.cnblogs.com/hereim/p/3746110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!