这是一个简单的 PHP5 框架用来创建 RESTful 的 Web 应用,示例代码:
<?php require 'Slim/Slim.php'; $app = new Slim(); $app->get('/hello/:name', function ($name) { echo "Hello, $name!"; }); $app->run(); ?>