xinwendongtai/387類名稱錯誤,請檢查。
- D:\wwwroot\junyucm.com\Comm\MyFrame\spFunctions.php on line 131
126.
* @param sdir 載入(rù)類(lèi)定義文(wén)件的路徑,可以是目錄+文件名的方式,也可(kě)以單獨是目錄。sdir的值將傳入import()進行載入
127.
* @param force_inst 是否強製重(chóng)新實(shí)例化對象
128.
*/
129.
function spClass($class_name, $args = null, $sdir = null, $force_inst = FALSE){
130.
// 檢(jiǎn)查類名稱是否正確,以保證類定義文件載入的安全性
131.
132.
if(preg_match('/[^a-z0-9\-_.]/i', $class_name))spError($class_name."類(lèi)名稱錯誤,請檢查。");
// 檢查是否(fǒu)該類已經實例(lì)化,直接返回已實例對象(xiàng),避免再次實(shí)例化
133.
if(TRUE != $force_inst)if(isset($GLOBALS['G_SP']["inst_class"][$class_name]))return $GLOBALS['G_SP']["inst_class"][$class_name];
134.
// 如果$sdir不能讀取,則測試是否僅(jǐn)路徑
135.
if(null != $sdir && !import($sdir) && !import($sdir.'/'.$class_name.'.php'))return FALSE;
136.
- D:\wwwroot\junyucm.com\Comm\MyFrame\spFunctions.php on line 14
9.
function spRun(){
10.
GLOBAL $__controller, $__action;
11.
// 對路由進行自動執行相關操(cāo)作
12.
spLaunch("router_prefilter");
13.
// 對將要(yào)訪問的控製器類進行實例(lì)化
14.
15.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
// 調用控製器出(chū)錯將調用路(lù)由錯誤(wù)處(chù)理函數
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
evals($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
- D:\wwwroot\junyucm.com\index.php on line 18
13.
//加(jiā)載配置文件
14.
require(APP_PATH.'/data/config.php');
15.
//加載框架核心
16.
require(SP_PATH.'/SpeedPHP.php');
17.
//執(zhí)行應用
18.
spRun();