simple-php-router icon indicating copy to clipboard operation
simple-php-router copied to clipboard

Very simple router written in PHP

Results 1 simple-php-router issues
Sort by recently updated
recently updated
newest added

Running PHP v5.6.3 on Apache/2.4.10, doing a simple test with the following code $router = new \Igniter\Router; $router->route( '/', 'load_index' ); $router->default_route('page_404'); $router->execute(); function load_index(){echo 'index';} function page_404(){echo '404 uh...