Bullet是一个实用的PHP微框架,它可以让你十分容易地创建RESTAPI和自动顺应HTTP标准需求的Web应用程序。Bullet是一种资源,URI导向,并且预装了强大的HTTP功能,例如内容协商和caching。它有以下两个优点:
超灵活的路径
减少重复代码(DRY)
示例代码:
$app = new Bullet\App();$app->path('foo', function($request) use($app) { return "foo";});$app->path('bar', function($request) use($app) { $foo = $app->run('GET', 'foo'); // $foo is now a `Bullet\Response` instance return $foo->content() . "bar";});echo $app->run('GET', 'bar'); // echos 'foobar' with a 200 OK status
评论