要通過GET請求調用API,可以使用PHP的內置函數(shù)file_get_contents()
或者curl
擴展來發(fā)送HTTP請求。下面是使用file_get_contents()
函數(shù)調用API的示例代碼:
$url = 'https://api.example.com/api_endpoint';
$response = file_get_contents($url);
if ($response !== false) {
$data = json_decode($response, true);
if ($data !== null) {
// 處理API返回的數(shù)據
print_r($data);
} else {
echo '無法解析API返回的JSON數(shù)據';
}
} else {
echo '無法連接到API';
}
如果需要在請求中傳遞參數(shù),可以將參數(shù)拼接到URL中,例如:
$url = 'https://api.example.com/api_endpoint?param1=value1¶m2=value2';
使用curl
擴展調用API的示例代碼如下:
$url = 'https://api.example.com/api_endpoint';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
if ($response !== false) {
$data = json_decode($response, true);
if ($data !== null) {
// 處理API返回的數(shù)據
print_r($data);
} else {
echo '無法解析API返回的JSON數(shù)據';
}
} else {
echo '無法連接到API';
}
curl_close($ch);
上述代碼示例中,通過curl_init()
初始化一個curl會話,并通過curl_setopt()
設置一些選項,然后通過curl_exec()
執(zhí)行HTTP請求。最后使用curl_close()
關閉curl會話。