在 PHP 中發送 GET 請求可以使用 cURL 庫或者簡單的 file_get_contents() 函數。下面是兩種方法的示例:
$url = 'http://example.com/api';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
// 處理響應
echo $response;
$url = 'http://example.com/api';
$response = file_get_contents($url);
// 處理響應
echo $response;
以上代碼示例中,$url 是要發送 GET 請求的 URL。通過 cURL 庫或者 file_get_contents() 函數可以發送 GET 請求,并獲取響應數據。接收到的響應數據可以進一步處理或者輸出到頁面上。