1
0
mirror of https://github.com/dannyvankooten/AltoRouter.git synced 2025-07-28 20:20:26 +02:00

use short array notation in readme too

This commit is contained in:
Danny van Kooten
2019-11-10 20:32:52 +01:00
parent 98e97407de
commit 3a97b2c432

View File

@@ -5,18 +5,18 @@ AltoRouter is a small but powerful routing class, heavily inspired by [klein.php
$router = new AltoRouter();
// map homepage
$router->map( 'GET', '/', function() {
$router->map('GET', '/', function() {
require __DIR__ . '/views/home.php';
});
// dynamic named route
$router->map( 'GET|POST', '/users/[i:id]/', function( $id ) {
$router->map('GET|POST', '/users/[i:id]/', function($id) {
$user = .....
require __DIR__ . '/views/user/details.php';
}, 'user-details' );
}, 'user-details');
// echo URL to user-details page for ID 5
echo $router->generate( 'user-details', array( 'id' => 5 ) ); // Output: "/users/5"
echo $router->generate('user-details', ['id' => 5]); // Output: "/users/5"
```
## Features