1. Go to this page and download the library: Download buuum/route library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
buuum / route example snippets
use Buuum\Router;
$router = new Router('/examples');
$router->filter('auth', function ($_requesturi) {
//return 'hola auth';
var_dump($_requesturi);
return [
'passed' => true,
response => [
'uri' => $_requesturi
]
];
return [
'passed' => false,
'response' => new RedirectResponse('path')
];
});
$router->get('/', function () {
return 'hello world';
});
$router->get('/part/', function () {
return 'hello world part';
})->setName('part');
$router->get('/part/{id:[0-9]+}/', function ($id) {
return 'hello world part' . $id;
})->setName('partid');
$router->group(['before' => ['auth']], function (\Buuum\Router $router) {
$router->get('/testbefore/', function () {
return 'hello test before';
});
});
$router->group(['prefix' => 'en'], function (\Buuum\Router $router) {
$router->get('/', function () {
return 'home with prefix en';
})->setName('home');
});
$router->group(['prefix' => 'es'], function (\Buuum\Router $router) {
$router->get('/', function () {
return 'home with prefix es';
})->setName('home');
$router->group(['prefix' => 'admin'], function (Router $router) {
$router->get('/', function () {
return 'hola 2 prefix';
})->setName('prefix2');
});
});
$router->get('/home/', function () {
return 'home without prefix';
})->setName('home');
$router->get(['/home/','/en/home/','/fr/home/'], function () {
return 'home';
})->setName('home');
$router->map(['GET','POST'], '/home/', function () {
return 'home';
})->setName('home');