PHP code example of refkinscallv / router

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

    

refkinscallv / router example snippets


    

use RF\Router\Route;

Route::register([
    'example/route/other'
]);

Route::setMaintenance(function() {
    echo "Maintenance Page";
});

// OR


Route::set404(function() {
    echo "Page Not Found";
});

// OR


Route::get('', function() {
    echo "Default Page";
});

// OR


Route::get('/param/{id?}', function($id) {
    echo 'Add param: ' . ($id ? $id : 'No parameter provided');
});

Route::group(['prefix' => '/parent/path'], function() {
    Route::get("", function() {
        echo "Default Page for /parent/path";
    });

    Route::get("/child", function() {
        echo "Path /child page of /parent/path";
    });
});

Route::run();