lib_類定義不存在,請(qǐng)檢查。
- /home/codes/webcode/xmgbuy.com/SpeedPHP/spFunctions.php on line 152
147.
$argString = '';$comma = '';
148.
if(null != $args)for ($i = 0; $i < count($args); $i ++) { $argString .= $comma . "\$args[$i]"; $comma = ', '; }
149.
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name($argString);");
150.
return $GLOBALS['G_SP']["inst_class"][$class_name];
151.
}
152.
153.
spError($class_name."類定義不存在,請(qǐng)檢查。");
}
154.
155.
/**
156.
* spError 框架定義的系統(tǒng)級(jí)錯(cuò)誤提示
157.
*
- /home/codes/webcode/xmgbuy.com/controller/sharevideo.php on line 183
178.
$this->type = $type;
179.
180.
// 數(shù)據(jù)庫(kù)聲明
181.
$appdataObj = spClass("lib_appdata");
182.
$cateObj = spClass("lib_cate"); // 分類
183.
184.
$newsObj = spClass("lib_".$type);
$sharevideoObj = spClass("lib_sharevideo");
185.
$lib_replyinfo = spClass("lib_replyinfo"); // 分類
186.
$db_user = spClass('lib_user');
187.
$buycreditsObj = spClass("lib_buycredits");
188.
- /home/codes/webcode/xmgbuy.com/SpeedPHP/spFunctions.php on line 21
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
20.
// 路由并執(zhí)行用戶代碼
21.
22.
$handle_controller->$__action();
// 控制器程序運(yùn)行完畢,進(jìn)行模板的自動(dòng)輸出
23.
if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.
$__tplname = $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.
$__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼裝模板路徑
26.
$handle_controller->auto_display($__tplname);
- /home/codes/webcode/xmgbuy.com/index.php on line 58
53.
),
54.
)
55.
);
56.
require(SP_PATH."/SpeedPHP.php");
57.
import(APP_PATH.'/controller/tplbasis.php'); // 需要先載入top控制器父類
58.
spRun();