路由錯(cuò)誤,請(qǐng)檢查控制器目錄下是否存在該控制器/動(dòng)作。
- D:\wwwroot\hbfst_ngfg7y\web\SpeedPHP\spFunctions.php on line 17
12.
spLaunch("router_prefilter");
13.
// 對(duì)將要訪問的控制器類進(jìn)行實(shí)例化
14.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
15.
// 調(diào)用控制器出錯(cuò)將調(diào)用路由錯(cuò)誤處理函數(shù)
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
18.
eval($GLOBALS['G_SP']["dispatcher_error"]);
exit;
19.
}
20.
// 路由并執(zhí)行用戶代碼
21.
$handle_controller->$__action();
22.
// 控制器程序運(yùn)行完畢,進(jìn)行模板的自動(dòng)輸出
- D:\wwwroot\hbfst_ngfg7y\web\index.php on line 105
100.
define('VERSIONNUMBER','v3.0');
101.
102.
// 這里是入口文件全局位置
103.
import(APP_PATH.'/include/functions.php');
104.
105.
spRun();