php警告Creating default object from empty value 问题的解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2020-11-05 11:39:20 浏览: 评论:0
PHP 提示 Creating default object from empty value 的问题,一般是由于PHP版升级的原因,PHP 5.4 以上的版本一般会报这个错误。
解决方法是找到报错的位置然后看哪个变量是没有初始化而直接使用的,将这个变量先实例化一个空类。如:
$ct = new stdClass();
修改文件相应代码,如:
- if ( ! isset( $themes[$current_theme] ) ) {
- delete_option( 'current_theme' );
- $current_theme = get_current_theme();
- }
- $ct = new stdClass(); <!--添加这行-->
- $ct->name = $current_theme;
Tags: Creating default object
相关文章
- ·Cannot use object of type stdClass as array(2013-11-28)
- ·Error: Object # has no method ‘load’(2014-08-20)
- ·mysql_fetch_array 与 mysql_fetch_object函数与用法(2014-09-12)
- ·PHP JSON出错:Cannot use object of type stdClass as array解决方法(2021-03-31)
- ·PHP使用mysql_fetch_object从查询结果中获取对象集的方法(2021-05-17)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)