在PHP中發送GET請求,可以使用file_get_contents()
函數或者cURL
庫來實現。以下是兩種方法的示例代碼:
file_get_contents()
函數發送GET請求:$url = 'http://example.com/api/data?key1=value1&key2=value2';
$response = file_get_contents($url);
echo $response;
cURL
庫發送GET請求:$url = 'http://example.com/api/data?key1=value1&key2=value2';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
以上代碼示例中,$url
是要發送GET請求的URL地址,可以在URL地址后面添加參數。file_get_contents()
函數會直接返回請求的結果,而cURL
庫可以更加靈活地設置請求參數和處理請求的結果。