コード例 #1
0
ファイル: Router.php プロジェクト: shampeak/_m.so
 public static function loadClass()
 {
     $system = systemInfo();
     $methodInfo = self::parseURI();
     print_r($methodInfo);
     //在解析路由之后,就注册自动加载,这样控制器可以继承类库文件夹里面的自定义父控制器,实现hook功能,达到拓展控制器的功能
     //但是plugin模式下,路由器不再使用,那么这里就不会被执行,自动加载功能会失效,所以在每个instance方法里面再尝试加载一次即可,
     //如此一来就能满足两种模式
     MpLoader::classAutoloadRegister();
     if (file_exists($methodInfo['file'])) {
         include $methodInfo['file'];
         MpInput::$router = $methodInfo;
         if (!MpInput::isCli()) {
             //session自定义配置检查,只在非命令行模式下启用
             self::checkSession();
         }
         $class = new $methodInfo['class']();
         if (method_exists($class, $methodInfo['method'])) {
             $methodInfo['parameters'] = is_array($methodInfo['parameters']) ? $methodInfo['parameters'] : array();
             //echo 'action before';
             if (method_exists($class, '__output')) {
                 ob_start();
                 call_user_func_array(array($class, $methodInfo['method']), $methodInfo['parameters']);
                 $buffer = ob_get_contents();
                 @ob_end_clean();
                 call_user_func_array(array($class, '__output'), array($buffer));
             } else {
                 call_user_func_array(array($class, $methodInfo['method']), $methodInfo['parameters']);
             }
             //echo 'action after';
         } else {
             trigger404($methodInfo['class'] . ':' . $methodInfo['method'] . ' not found.');
         }
     } else {
         if ($system['debug']) {
             trigger404('file:' . $methodInfo['file'] . ' not found.');
         } else {
             trigger404();
         }
     }
 }
コード例 #2
0
ファイル: MicroPHP.min.php プロジェクト: cenxun/microphp
 public static function loadClass()
 {
     $system = systemInfo();
     $methodInfo = self::parseURI();
     MpLoader::classAutoloadRegister();
     if (file_exists($methodInfo['file'])) {
         include $methodInfo['file'];
         MpInput::$router = $methodInfo;
         if (!MpInput::isCli()) {
             self::checkSession();
         }
         $class = new $methodInfo['class']();
         if (method_exists($class, $methodInfo['method'])) {
             $methodInfo['parameters'] = is_array($methodInfo['parameters']) ? $methodInfo['parameters'] : array();
             if (method_exists($class, '__output')) {
                 ob_start();
                 call_user_func_array(array($class, $methodInfo['method']), $methodInfo['parameters']);
                 $buffer = ob_get_contents();
                 @ob_end_clean();
                 call_user_func_array(array($class, '__output'), array($buffer));
             } else {
                 call_user_func_array(array($class, $methodInfo['method']), $methodInfo['parameters']);
             }
         } else {
             trigger404($methodInfo['class'] . ':' . $methodInfo['method'] . ' not found.');
         }
     } else {
         if ($system['debug']) {
             trigger404('file:' . $methodInfo['file'] . ' not found.');
         } else {
             trigger404();
         }
     }
 }