ideiasinsolitas/deck-router

There is no license information available for the latest version (dev-master) of this package.

PHP Router

dev-master 2015-07-06 02:22 UTC

This package is not auto-updated.

Last update: 2024-05-15 05:50:22 UTC


README

Simple front controller implementation

$uri = $_SERVER['REQUEST_URI'];
$routes = array(/* parsed from json */);

$router = new Router($routes);
$dispatcher = new Dispatcher();

$route = $router->route($uri);
$dispatcher->dispatch($route);