在PHP中發送GET請求可以使用file_get_contents()
函數或者cURL
擴展庫。
使用file_get_contents()
函數:
$url = 'http://example.com/api/users';
$response = file_get_contents($url);
echo $response;
使用cURL
擴展庫:
$url = 'http://example.com/api/users';
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
以上代碼示例中,$url
是要發送GET請求的URL地址,$response
是接收返回的數據。在file_get_contents()
函數中,直接使用函數來發送請求并接收返回數據;而在cURL擴展庫中,通過curl_init()
初始化一個cURL會話,然后設置CURLOPT_RETURNTRANSFER
選項來確保獲取返回數據,最后使用curl_exec()
發送請求并接收返回數據。