PHP code example of diogof648 / simple-php-router

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

    

diogof648 / simple-php-router example snippets




use Diogof648\SimplePhpRouter\Router;

Router::get('/home', function () {
    echo "Home";
});

Router::post(...);
Router::patch(...);
Router::put(...);
Router::delete(...);
Router::any(...);

// If no match
Router::noMatch();
// OR
Router::noMatch(function () {
    echo "Not Found";
});
bash
composer