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


PHP Router::match方法代碼示例

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


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

示例1: match

 /**
  * @param string $pathinfo
  * @return boolean
  */
 public function match($pathinfo)
 {
     if (null !== $this->parent) {
         return $this->parent->match($pathinfo);
     }
     return parent::match($pathinfo);
 }
開發者ID:genedys,項目名稱:csrf-route-bundle,代碼行數:11,代碼來源:CsrfRouter.php

示例2: updateNavigationHistory

 /**
  * Update navigation history with route names and parameters
  *
  * @param QueryBag $queries
  */
 protected function updateNavigationHistory(QueryBag $queries)
 {
     $queryBuilder = $this->em->getRepository('OroNavigationBundle:NavigationHistoryItem')->createQueryBuilder('h')->select('h.id, h.url');
     $paginator = new Paginator($queryBuilder, false);
     foreach ($paginator as $navItem) {
         try {
             $url = str_replace('app_dev.php/', '', $navItem['url']);
             $routeData = $this->router->match($url);
             $entityId = isset($routeData['id']) ? (int) $routeData['id'] : null;
             $route = $routeData['_route'];
             unset($routeData['_controller'], $routeData['id'], $routeData['_route']);
             $queries->addPostQuery(sprintf('UPDATE oro_navigation_history ' . 'SET route = \'%s\', entity_id = %d, route_parameters=\'%s\' WHERE id = %d', $route, $entityId, serialize($routeData), $navItem['id']));
         } catch (\RuntimeException $e) {
             $queries->addPostQuery(sprintf('UPDATE oro_navigation_history SET route_parameters = \'%s\' WHERE id=%d', serialize([]), $navItem['id']));
         }
     }
 }
開發者ID:Maksold,項目名稱:platform,代碼行數:22,代碼來源:OroNavigationBundle.php

示例3: match

 /**
  * {@inheritdoc}
  */
 public function match($pathinfo)
 {
     $this->setApiVersion();
     return parent::match($pathinfo);
 }
開發者ID:eliberty,項目名稱:api-bundle,代碼行數:8,代碼來源:ApiRouter.php

示例4: match

 /**
  * {@inheritdoc}
  */
 public function match($pathinfo)
 {
     $match = parent::match($pathinfo);
     $this->setMatchContext($match);
     return $match;
 }
開發者ID:deantomasevic,項目名稱:multisite-bundle,代碼行數:9,代碼來源:MultisiteRouter.php

示例5: match

 /**
  * {@inheritdoc}
  */
 public function match($url)
 {
     return $this->matchI18n(parent::match($url), $url);
 }
開發者ID:alekitto,項目名稱:JMSI18nRoutingBundle,代碼行數:7,代碼來源:I18nRouter.php

示例6: match

 /**
  * @param string $pathinfo
  * @return array
  */
 public function match($pathinfo)
 {
     $match = parent::match($pathinfo);
     return $this->processMatch($match);
 }
開發者ID:leapt,項目名稱:i18n-bundle,代碼行數:9,代碼來源:I18nRouter.php


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