PHP中的cURL请求

时间:2017-02-02 15:12:30

标签: php curl

我对PHP中的cURL请求有疑问。我必须使用cURL请求,但根本没有与他们联系。

在以下示例中,我将向您展示如何查看cURL请求。我的问题是:如何将此语句“转换”为PHP cURL请求?

curl -X GET --header "Accept: application/json" --header "Authorization: Bearer APIKEY" "https://api.example.com/api-api-ng/v1/function?lat=50&lon=8&radius=500&statement=2"

所以我希望你们能帮我解决这个问题。我只了解cURL的基础知识,希望您能告诉我设置cURL请求所需的所有步骤。

1 个答案:

答案 0 :(得分:2)

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.example.com/api-api-ng/v1/function?lat=50&lon=8&radius=500&statement=2");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");


$headers = array();
$headers[] = "Accept: application/json";
$headers[] = "Authorization: Bearer APIKEY";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);
echo $result;