當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dispatcher::url方法代碼示例

本文整理匯總了PHP中Dispatcher::url方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dispatcher::url方法的具體用法?PHP Dispatcher::url怎麽用?PHP Dispatcher::url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Dispatcher的用法示例。


在下文中一共展示了Dispatcher::url方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: dispatch

 /**
  * Call route loads, process requested url and dispatchs to controllers
  */
 public static function dispatch()
 {
     try {
         self::$url = isset($_GET['url']) ? $_GET['url'] : '';
         self::$dispatcher = new Pux\Mux();
         self::loadRoutes();
         // real dispatcher (Pux) call
         $route = self::$dispatcher->dispatch('/' . self::$url);
         // shorthand pointers to processed route variables
         $vars = is_array($route) && array_key_exists(3, $route) && array_key_exists('vars', $route[3]) ? $route[3]['vars'] : array();
         $default = is_array($route) && array_key_exists(3, $route) && array_key_exists('default', $route[3]) ? $route[3]['default'] : array();
         // parse controller name from the processed route
         $controller = ucfirst(!is_null($route[2]) && array_key_exists(0, $route[2]) ? $route[2][0] : (array_key_exists('controller', $vars) ? $vars['controller'] : (array_key_exists('controller', $default) ? $default['controller'] : DEFAULT_CONTROLLER_NAME)));
         // all controller must have the Controller suffix
         if (strlen($controller) < 10 || substr($controller, -10) != 'Controller') {
             $controller .= 'Controller';
         }
         // let's instantiate the controller so if it not exists, should fire
         // an exception and the rest of the code in this method won't run
         $Controller = new $controller();
         // parse method name from the processed route
         $method = !is_null($route[2]) && array_key_exists(1, $route[2]) ? $route[2][1] : (array_key_exists('method', $vars) ? $vars['method'] : (array_key_exists('method', $default) ? $default['method'] : DEFAULT_CONTROLLER_METHOD));
         // parse arguments to be sent to the controller method from the processed route
         $args = !is_null($route[2]) && array_key_exists(2, $route[2]) ? $route[2][3] : (!is_null($route[3]) && array_key_exists('args', $vars) ? preg_split('/\\//', $vars['args']) : (!is_null($default) && array_key_exists('args', $default) ? $default['args'] : array()));
         // there we go
         call_user_func_array(array($Controller, $method), $args);
     } catch (Exception $e) {
         // TO-DO:
         // probably we couldn't dispatch the request because of
         // an unreachable controller method so we should show a
         // 404 page or handle the exception in a proper way
         error_log('Dispatcher::dispatch: ' . $e->getMessage());
     }
 }
開發者ID:MaitreyaBuddha,項目名稱:worklist,代碼行數:37,代碼來源:Dispatcher.php

示例2: url

 function url($u)
 {
     return Dispatcher::url($u);
 }
開發者ID:slab-php,項目名稱:slab,代碼行數:4,代碼來源:controller.php


注:本文中的Dispatcher::url方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。