Err: Method 'actionsitemap' of 'programController' is not exists!

507.      }
508.  }
509.  function _err_router($msg){
510.      Global $__module$__controller$__action;
511.      if(!method_exists('BaseController''err404')){
512.          err($msg);
513.      }else{
514.          BaseController::err404($__module$__controller$__action$msg);
515.      }
516.  }
517.  function _err_handle($errno$errstr$errfile$errline){
88.      // _err_router("页面不存在!");
89.      $url url("pc/main","index");
90.      header("Location:".$url);
91.      exit;
92.  };
93.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
94. 
95.  $controller_obj = new $controller_name();
96.  $controller_obj->$action_name();
97. 
98.  if($controller_obj->_auto_display){
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');