simplydi / simplyrouter
A simple PHP routing system for small apps
dev-main
2023-08-04 13:21 UTC
This package is auto-updated.
Last update: 2025-04-04 17:04:20 UTC
README
A simple routing system in PHP
Notes
- built for learning purpose
- it is a very simple router. For more powerful features like route naming and middleware implementations, go for League Route or Symfony router
- suitable only for small projects
Usage
include 'src/Router.php'; // or use composer: require 'vendor/autoload.php' $route = new \SimplyDi\SimplyRouter\Router(); $route->match('/', function () { echo "Welcome us"; }); $route->match('/about', function () { echo "About us"; }); $route->match('/policy/privacy', function () { echo "PRIVACY us"; }); $route->match('/post/{slug}', function ($params) { $slug = $params['slug']; echo "Post with slug: " . $slug; }); # using controller classes $route->match('/{slug}', function ($params) { $slug = $params['slug']; return (new PageController)->single($slug); }); $route->run(); // run the router