Err: Method 'actionsitemap' of 'programController' is not exists!
- /www/wwwroot/test.com/protected/lib/speed.php on line 512
507.
}
508.
}
509.
function _err_router($msg){
510.
Global $__module, $__controller, $__action;
511.
if(!method_exists('BaseController', 'err404')){
512.
513.
err($msg);
}else{
514.
BaseController::err404($__module, $__controller, $__action, $msg);
515.
}
516.
}
517.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/test.com/protected/lib/speed.php on line 93
88.
// _err_router("页面不存在!");
89.
$url = url("pc/main","index");
90.
header("Location:".$url);
91.
exit;
92.
};
93.
94.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
95.
$controller_obj = new $controller_name();
96.
$controller_obj->$action_name();
97.
98.
if($controller_obj->_auto_display){
- /www/wwwroot/test.com/index.php on line 6
1.
<?php
2.
session_start();
3.
header('Access-Control-Allow-Origin: *');
4.
define('APP_DIR', realpath('./'));
5.
define("APP_PATH",dirname(__FILE__));
6.
require(APP_DIR.'/protected/lib/speed.php');