程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php警告Creating default object from empty value 問題的解決方法

php警告Creating default object from empty value 問題的解決方法

編輯:關於PHP編程

     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; 問題解決。    
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved