时间:2021-07-01 10:21:17 帮助过:53人阅读
RESTful的PUT请求如何才能在控制器获取到数据,并为纯数组的形式?
Yii::$app->request->bodyParams;
file_get_contents("php://input");
一般都是用`POST` 请求来模拟`PUT` 和`DELETE` 请求
参数加 http_build_query($params)
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));