PHP Classes

Route Class: Route HTTP request to callback functions

Recommend this page to a friend!
  Info   View files Documentation   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStar 50%Total: 109 This week: 1All time: 9,634 This week: 560Up
Version License PHP version Categories
route-class 1.0.0MIT/X Consortium ...5HTTP, PHP 5, Design Patterns
Description 

Authors

Danny van Kooten
Koen Punt
niahoo


Contributor

This class can route HTTP request to callback functions.

It can register patterns that define the URL of routes and the HTTP methods that it will handle.

The class can process the current request to check which of the registered patterns it matches and dispatch the request to the associated callback function.

Picture of yogesh
  Performance   Level  
Name: yogesh <contact>
Classes: 2 packages by
Country: India India
Age: 31
All time rank: 4165287 in India India
Week rank: 411 Up26 in India India Up

Documentation

AltoRouter Build Status Latest Stable Version License Code Climate Test Coverage

AltoRouter is a small but powerful routing class for PHP 5.3+

$router = new AltoRouter();

// map homepage
$router->map( 'GET', '/', function() {
    require __DIR__ . '/views/home.php';
});

// map users details page
$router->map( 'GET|POST', '/users/[i:id]/', function( $id ) {
  $user = .....
  require __DIR__ . '/views/user/details.php';
});

Features

  • Can be used with all HTTP Methods
  • Dynamic routing with named route parameters
  • Reversed routing
  • Flexible regular expression routing (inspired by Sinatra)
  • Custom regexes

Getting started

You need PHP >= 5.3 to use AltoRouter.

License

(MIT License)

Copyright (c) 2012-2015 Danny van Kooten <hi@dannyvankooten.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


  Files folder image Files  
File Role Description
Plain text file AltoRouter.php Class Class source
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation

 Version Control Unique User Downloads Download Rankings  
 100%
Total:109
This week:1
All time:9,634
This week:560Up
 User Ratings  
 
 All time
Utility:75%StarStarStarStar
Consistency:66%StarStarStarStar
Documentation:66%StarStarStarStar
Examples:-
Tests:-
Videos:-
Overall:50%StarStarStar
Rank:2597