本文整理汇总了PHP中Routes::dispatch方法的典型用法代码示例。如果您正苦于以下问题:PHP Routes::dispatch方法的具体用法?PHP Routes::dispatch怎么用?PHP Routes::dispatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Routes
的用法示例。
在下文中一共展示了Routes::dispatch方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
<?php
// No cache
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
define('APP_DIR', realpath('./') . '/');
define('CF_DIR', realpath('../confeature/') . '/');
define('DATA_DIR', realpath('../data/') . '/');
try {
// Loading Confeature
require_once CF_DIR . 'init.php';
// Loading the controllers and actions from url info
Routes::dispatch();
} catch (Exception $e) {
if (Config::DEBUG) {
echo $e->getMessage();
}
}
示例2: dirname
<?php
require_once dirname(__FILE__) . '/config/routes.php';
$route_options = array(array('path' => '/', 'controller' => 'index', 'action' => 'index'), array('path' => '/hello', 'controller' => 'index', 'action' => 'hello'));
$r = new Routes($route_options);
$r->dispatch($_SERVER['REQUEST_URI']);
示例3: realpath
<?php
// Prepare the global variables
define('BASE_PATH', realpath(dirname(__FILE__)));
// Get the main files
include_once 'system/classes/base.php';
include_once 'system/classes/routes.php';
include_once 'system/libraries/php-activerecord/ActiveRecord.php';
// Initialize the base classes
$Base = new Base();
$Map = new Routes();
// Include config files
// Include config files
include_once 'config/config.php';
include_once 'config/routes.php';
// Connect the the database
$Base->load_db();
// Load the page
$Map->dispatch();