jesusslim / sroute

php 简单路由

1.0 2017-10-27 09:14 UTC

This package is not auto-updated.

Last update: 2024-09-15 05:08:02 UTC


README

简单路由

用法

$routes = new \sroute\src\Routes();
$routes->post('/test',[YourController::class,'action']);
$routes->get('/closure',function(){ echo "sroute";});
$route = $routes->match('GET','/closure');
$handler = $routes->handler('GET','/closure');