在PHP中調用API接口的方法包括使用cURL庫和file_get_contents()函數。
// 初始化cURL
$curl = curl_init();
// 設置請求的URL和其他選項
curl_setopt($curl, CURLOPT_URL, $apiUrl);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
// 發送請求并獲取響應
$response = curl_exec($curl);
// 關閉cURL
curl_close($curl);
// 處理響應數據
$data = json_decode($response, true);
// 設置請求的URL
$apiUrl = 'http://example.com/api';
// 發送請求并獲取響應
$response = file_get_contents($apiUrl);
// 處理響應數據
$data = json_decode($response, true);
以上兩種方法都可以用于調用API接口并獲取響應數據,具體選擇哪種方法取決于個人偏好和項目需求。