1. Go to this page and download the library: Download phoole/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/ */
phoole / route example snippets
use Phoole\Route\Router;
use GuzzleHttp\Psr7\ServerRequest;
use Psr\Http\Message\ServerRequestInterface;
$router = (new Router())
->addGet(
'/blog/{action:xd}[/{year:d}[/{month:d}[/{date:d}]]]',
function(ServerRequestInterface $request) {
$params = $request->getAttribute(Router::URI_PARAMETERS);
echo "action is " . $params['action'];
}
)->addPost(
'/blog/post',
'handler2'
)->addRoute(new Route(
'GET,HEAD',
'/blog/read[/{id:d}]',
'handler3',
['id' => '1'] // default values
));
// diaptcher (match & execute controller action)
$result = $router->match(new ServerRequest('GET', '/blog/list/2016/05/01'));
if ($result->isMatched()) {
echo "WOW matched";
}