PHP code example of phpico / router

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

    

phpico / router example snippets



s HomeController{
    function index(){
        return 'Hello people';
    }
    
    function greet($a){
        return 'Hello '.$a;
    }
}

$routes = [
    '\/greet\/(.*)' => ['POST', function(){
        return "Oh yeah callbacks :D";
    }],
    '\/greet\/(.*)' => ['GET', 'HomeController@greet'],
    '\/' => 'HomeController'
];

$router = new \PHPico\Router();
echo($router->dispatch($routes));



$routes = [
    '\/' => 'HomeController'
];

 HomeController::class 


$routes = [
    '\/greet\/(.*)' => function($a){
        return "Hello ".$a;
    },
];



$routes = [
    '\/' => ['POST','HomeController']
];



$routes = [
    '\/' => ['GET', 'POST','HomeController']
];



if($router->dispatch($routes) === false){
    header("HTTP/1.0 404 Not Found");
    die('Not found');
}
$a