如下代码:
require 'vendor/autoload.php';
$app->get('/hello[/{name}]', function ($request, $response, $args) {
$response->write("Hello, " . $args['name']);
return $response;
})->setArgument('name', 'World!');
$app = new Slim\App();
$app->get('/books/:one', function ($one) {
print_r((array)$one);
});
为什么我访问 http://localhost/books?ss=e 提示说 Page Not Found。可是访问 http://localhost/helo/friends 却没问题
没看人家用的 {name}么, 而且是第三个参数$args数组里面