PHP MacawPHP 路由器
Macaw 是一个简单的 PHP 路由器,超级精简、快速而且很性感。
示例代码:
Macaw::get('/', function() { echo 'Hello world!'; }); Macaw::dispatch();
支持Lambda URL:
Macaw::get('/(:any)', function($slug) { echo 'The slug is: ' . $slug; }); Macaw::dispatch();
也可以发起 HTTP 请求:
Macaw::get('/', function() { echo 'I <3 GET commands!'; }); Macaw::post('/', function() { echo 'I <3 POST commands!'; }); Macaw::dispatch();
评论