1. Go to this page and download the library: Download ioguns/httprouter 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/ */
ioguns / httprouter example snippets
er = new \IOguns\HttpRouter\RouteCollection();
$router->get('/', 'demo','home');
$router->get('/page/{page_slug=[a-zA-Z0-9\-]+}', ['name' => 'page.show']);
$router->get('/about-us', ['name' => 'about-us']);
$router->get('/contact-us', ['name' => 'contact-us']);
$router->post('/contact-us', ['name' => 'contact-us.submit']);
$router->addGroup('/blog', function ($router) {
$router->get('/', ['name' => 'blog.index']);
$router->get('/recent', ['name' => 'blog.recent']);
$router->get('/post/{post_slug=[a-zA-Z0-9\-]+}', ['name' => 'blog.post.show']);
$router->post('/post/{post_slug=[a-zA-Z0-9\-]+}/comment', ['name' => 'blog.post.comment']);
});
// Fetch method and URI from somewhere
$http_method = $_SERVER['REQUEST_METHOD'];
$uri = $_SERVER['REQUEST_URI'];
// Strip query string (?foo=bar) and decode URI
if (false !== $pos = strpos($uri, '?')) {
$uri = substr($uri, 0, $pos);
}
$uri = rawurldecode($uri);
$route_info = $router->getRoute($http_method, $uri);
switch ($route_info[0]) {
case \IOguns\HttpRouter\IRouteCollection::ROUTE_NOT_FOUND:
// ... 404 Not Found
break;
case \IOguns\HttpRouter\IRouteCollection::ROUTE_FOUND:
$data = $route_info[1];
$route_params = $route_info[2];
// ... call $handler with $route_params
break;
case \IOguns\HttpRouter\IRouteCollection::ROUTE_METHOD_NOT_ALLOWED:
$allowed_methods = $route_info[1];
// ... 405 Method Not Allowed
break;
}