exception 404: No controller /sitemap.xml
- CORE/init.php: 2741
- CORE/init.php: 2529
- CORE/index.php: 55
- CORE/public/index.php: 2
- CORE/init.php: 759
750 return self::$_controllers[$module][$name];
751 }
752 $prefix = 'C67\\controller\\'. SYSTEM_67 .'\\'. ($module ? ucfirst($module) .'\\' : '');
753 $uc = ucfirst($name);
754 $cls = $prefix . $uc;
755 if(!class_exists($cls)){
756 $cls = $prefix .'_'. $uc;
757 if(!class_exists($cls, false)){
758 //兼容, 纯数字:_360, 关键字:_Interface
759 throw new Exception('No controller '. $module .'/'. $name, 404);
760 }
761 }
762
763 self::$_controllers[$module][$name] = new $cls($MODULE, $name);
764 return self::$_controllers[$module][$name];
765}
766
767static public function init_db($key, $new = false){
768 if(isset(self::$dbs[$key]) && !$new) return self::$dbs[$key];