最近想想写一些小东西,于是便研究起来了一些比较小型的php的框架,最后挑中了slim,而且也想更好的去了解一下什么时restful的框架。
折腾如下:
系统配置如下: Deepin, php, nginx
1. 使用php composer
进行安装
项目目录新加文件composer.json
内容如下:
{
"require": {
"slim/slim": "2.*"
}
}
执行 composer install
2. nginx中 /etc/nginx/sites-enabled/yourconfigname
中修改 try_files $uri $uri/ /index.php?$args;
这样处理时为了进行路由的改写
3. 在项目的根目录下新建index.php文件
require 'vendor/autoload.php';
$app = new \Slim\Slim();
$app->get(
'/hello/:name',
function ($name) {
echo "Hello, ".$name." ! ";
});
$app->run();
4. 浏览器中输入http://localhost/hello/aaron
即可显示出来 Hello, aaron !
done !