PHP code example of grafgriffon / php-router

1. Go to this page and download the library: Download grafgriffon/php-router 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/ */

    

grafgriffon / php-router example snippets




use GrafGriffon\PhpRouter\Route;
use GrafGriffon\PhpRouter\Router;

('v1',
        Route::make('GET', 'get', function () {
            echo "get\n";
        }),
        Route::make('POST', 'add', function () {
            echo "add\n";
        })
    ),
    Route::make('GET', 'documentation', function () {
        echo "documentation\n";
    })
);
$router->addRoute(Route::make('GET', 'example', function () {
    echo "example\n";
}));

$router->addRoutes(
    Route::make('GET', 'get', function () {
        echo "get\n";
    }),
    Route::make('POST', 'add', function () {
        echo "add\n";
    })
);

$target = $router->match('GET', '/games/v1/get?val=test');

if ($target) {
    $target();
} else {
    echo 'Route not present';
}