使用slim我可以像这里Getting request parameters on Slim一样使用GET方法,因此function($id)
使用在网址($id
)中传递的单个/getpropfile/:id
参数,但我我想知道如何使用两个参数执行此操作,因此/:username/:password
function()
必须有多个参数,所以function($username, $password)
?
注意:我只想让它回显$username
和$password
,所以我知道这两个参数已经传入。
谢谢
答案 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;
});