当前位置: 首页>>代码示例>>PHP>>正文


PHP Basic::requireOr404方法代码示例

本文整理汇总了PHP中Basic::requireOr404方法的典型用法代码示例。如果您正苦于以下问题:PHP Basic::requireOr404方法的具体用法?PHP Basic::requireOr404怎么用?PHP Basic::requireOr404使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Basic的用法示例。


在下文中一共展示了Basic::requireOr404方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dispatch

 public function dispatch()
 {
     $view_controllerName = $this->controllerName;
     $view_actionName = $this->actionName;
     $controllerClassName = ucfirst($this->controllerName) . 'Controller';
     if (file_exists('./controllers/' . $controllerClassName . '.php')) {
         require './controllers/' . $controllerClassName . '.php';
     } else {
         $view_controllerName = DEFAULT_CONTROLLER_NAME;
         $controllerClassName = DEFAULT_CONTROLLER_NAME . 'Controller';
         Basic::requireOr404('./controllers/' . $controllerClassName . '.php');
     }
     //把controller中输出的内容保留并在view后输出
     ob_start();
     Lugit::$controller = new $controllerClassName($this->array_parameter);
     if (method_exists(Lugit::$controller, $this->actionName . 'Action')) {
         //方法存在,调用方法
         Lugit::$controller->{$this->actionName . 'Action'}();
     } else {
         if (method_exists(Lugit::$controller, DEFAULT_ACTION_NAME . 'Action')) {
             //方法不存在,调用默认方法
             $view_actionName = DEFAULT_ACTION_NAME;
             Lugit::$controller->{DEFAULT_ACTION_NAME . 'Action'}($this->actionName);
         } else {
             //方法不存在 且 默认方法不存在,返回404错误
             throw new NotFoundException();
         }
     }
     $controller_output = ob_get_clean();
     if (empty(Lugit::$view)) {
         Lugit::$view = new View(Lugit::$controller->getVars());
     }
     $template = isset($this->template) ? $this->template : './views/scripts/' . $view_controllerName . '/' . $view_actionName . '.phtml';
     Lugit::$view->render($template);
     echo $controller_output;
 }
开发者ID:sujinw,项目名称:php-lugit-framework,代码行数:36,代码来源:Router.php


注:本文中的Basic::requireOr404方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。