Home >Backend Development >PHP Tutorial >RESTful的PUT请求如何才能在控制器获取到数据,并为纯数组的形式?
RESTful的PUT请求如何才能在控制器获取到数据,并为纯数组的形式?
RESTful的PUT请求如何才能在控制器获取到数据,并为纯数组的形式?
<code class="php">Yii::$app->request->bodyParams;</code>
file_get_contents("php://input");
<code>一般都是用`POST` 请求来模拟`PUT` 和`DELETE` 请求</code>
参数加 http_build_query($params)
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));