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


PHP Router::fallback方法代碼示例

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


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

示例1:

Router::any('rests/update', 'Controllers\\Rests@update_restaurant');
Router::any('rests/update_all', 'Controllers\\Rests@update_all');
Router::any('rests', 'Controllers\\Rests@index');
Router::any('rest/(:num)/delivery_report', 'Controllers\\Rests@delivery_report');
Router::any('delivery_report/(:num)', 'Controllers\\Rests@delivery_report');
Router::any('delivery/(:num)', 'Controllers\\Rests@delivery_report');
Router::any('dishes/parse/(:num)', 'Controllers\\Rests@parse');
Router::any('dishes/parse_all', 'Controllers\\Rests@parse_all');
Router::any('ping', 'Controllers\\Rests@ping');
Router::any('login', 'Controllers\\Auth@login');
Router::any('register', 'Controllers\\Auth@register');
Router::any('logout', 'Controllers\\Auth@logout');
Router::any('user/dishes', 'Controllers\\User@dishes');
Router::any('user/rand_dish', 'Controllers\\User@rand_dish');
Router::any('favorite/(:num)/(:num)', 'Controllers\\User@manage_favorite');
Router::any('favorite/(:num)', 'Controllers\\User@manage_favorite');
Router::any('search', 'Controllers\\Search@search_post');
Router::any('search/(:any)', 'Controllers\\Search@search');
Router::any('advanced_search', 'Controllers\\Search@advanced_search');
Router::any('json/search', 'Controllers\\Json@search');
Router::any('json/all_dishes', 'Controllers\\Json@all_dishes');
Router::any('', 'Controllers\\Welcome@index');
//module routes
$hooks = Hooks::get();
$hooks->run('routes');
//if no route found
Router::error('Core\\Error@index');
//turn on old style routing
Router::$fallback = false;
//execute matched routes
Router::dispatch();
開發者ID:Zed3,項目名稱:foodie,代碼行數:31,代碼來源:index.php

示例2:

<?php

/**
 * Routes - all standard routes are defined here.
 *
 * @author David Carr - dave@daveismyname.com
 * @version 2.2
 * @date updated Sept 19, 2015
 */
/**
 * Create alias for Router.
 */
use Core\Router, Helpers\Hooks;
/**
 * Define routes.
 */
Router::any('', 'Controllers\\Welcome@index');
Router::any('subpage', 'Controllers\\Welcome@subPage');
/**
 * If no route found.
 */
Router::error('Core\\Error@index');
/**
 * Turn on old style routing.
 */
Router::$fallback = true;
/**
 * Execute matched routes.
 */
Router::dispatch();
開發者ID:krishnasrikanth,項目名稱:smvc-php7,代碼行數:30,代碼來源:routes.php


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