我想了解HTTP PUT方法如何与PHP一起使用?
我在网上搜索了一些关于cURL的教程。
但我不知道如何使用它(如REST API)。
答案 0 :(得分:1)
$data = array("field" => "value");
$ch = curl_init($yourUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);