hunhexijie/id/20241219nhj4sxta類名稱錯誤,請檢查。
- D:\wwwroot\jindacables\wwwroot\SpeedPHPs\spFunctions.php on line 137
132.
* @param sdir 載入類定義文件的路徑,可以是目錄+文件名的方式,也可以單獨(dú)是目錄。sdir的值將傳入import()進(jìn)行載入
133.
* @param force_inst 是否強(qiáng)制重新實(shí)例化對象
134.
*/
135.
function spClass($class_name, $args = null, $sdir = null, $force_inst = FALSE){
136.
// 檢查類名稱是否正確,以保證類定義文件載入的安全性
137.
138.
if(preg_match('/[^a-z0-9\-_.]/i', $class_name))spError($class_name."類名稱錯誤,請檢查。");
// 檢查是否該類已經(jīng)實(shí)例化,直接返回已實(shí)例對象,避免再次實(shí)例化
139.
if(TRUE != $force_inst)if(isset($GLOBALS['G_SP']["inst_class"][$class_name]))return $GLOBALS['G_SP']["inst_class"][$class_name];
140.
// 如果$sdir不能讀取,則測試是否僅路徑
141.
if(null != $sdir && !import($sdir) && !import($sdir.'/'.$class_name.'.php'))return FALSE;
142.
- D:\wwwroot\jindacables\wwwroot\SpeedPHPs\spFunctions.php on line 15
10.
GLOBAL $__controller, $__action;
11.
12.
// 對路由進(jìn)行自動執(zhí)行相關(guān)操作
13.
spLaunch("router_prefilter");
14.
// 對將要訪問的控制器類進(jìn)行實(shí)例化
15.
16.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
// 調(diào)用控制器出錯將調(diào)用路由錯誤處理函數(shù)
17.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
18.
eval($GLOBALS['G_SP']["dispatcher_error"]);
19.
exit;
20.
}
- D:\wwwroot\jindacables\wwwroot\index.php on line 36
31.
)
32.
)
33.
*/
34.
);
35.
require("base.php");
36.
37.
spRun();
?>