izyanzz / routerphp
1.0.0
2021-12-08 04:39 UTC
This package is not auto-updated.
Last update: 2024-09-26 16:48:18 UTC
README
这是一个使用PHP的router项目
我的Github : IzyanzZ
教程
这是使用RouterPHP的示例
<?php require_once __DIR__ "vendor/autoload.php"; use IzyanzZ\Router; $route = new Router(); // Get Method $route->get("/", function() { echo "Hello, World!"; }); // Post Method $route->post("/", function() { echo "Hello, World!"; }); $route->run();