在Slim上获取多个请求参数

时间:2014-04-03 11:15:12

标签: php get slim

使用slim我可以像这里Getting request parameters on Slim一样使用GET方法,因此function($id)使用在网址($id)中传递的单个/getpropfile/:id参数,但我我想知道如何使用两个参数执行此操作,因此/:username/:password

function()必须有多个参数,所以function($username, $password)

注意:我只想让它回显$username$password,所以我知道这两个参数已经传入。

谢谢

1 个答案:

答案 0 :(得分:0)

我似乎回答了自己的问题......

$app->get('/:username/:password', function ($username, $password) use ($app) {
    //function to return the username and password
    $result = getUserByUsernameAndPassword($username, $password);
    $app->response()->header('Content-Type', 'application/json');
    echo $result;
});