0

我正在使用Slim framework来开发我的休息API。我的PUT请求有问题。我想在服务器端访问从客户端发送的变量。

$app->put('post/:pid', function ($pid) {
    //how to access other data sent from the client?
}
4

1 回答 1

3

参考下面的代码:

$app = \Slim\Slim::getInstance();
$request = $app->request();
$var = $request->put();

变量是 $var 处的数组形式

于 2012-10-01T12:54:07.553 回答