D:\wwwroot_cn\www.youjiecm.com\lastphp\core\System.class.php LINE: 120
错误位置
108 static function getModuleDirName() { 109 return 'module'; 110 } 111 112 // 加载控制器文件 113 static function loadController() { 114 $controllor = (Url::getController ( TRUE )); 115 $file = System::getAppDir () . '/' . self::getModuleDirName () . '/' . Url::getMoudule () . '/' . $controllor . '.php'; 116 117 if (is_file ( $file ) == false) { 118 // 抛出异常报告不存在 119 header ( "http/1.1 404 Not Found" ); 120 Error::throwException ( '控制器文件不存在,请检查:' . $file ); 121 } 122 include_once $file; 123 124 // 存在初始化函数就运行 125 $class = Url::getController ( TRUE ); 126 $class = new $class (); 127 if (in_array ( '_initialize', get_class_methods ( $class ) )) { 128 $class->_initialize (); 129 } 130 return $class; 131 } 132 // 加载框架中的类库