PHP的curl_exec函數用于執行一個cURL會話,發送請求并獲取響應。使用方法如下:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://example.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$response = curl_exec($ch);
curl_close($ch);
完整的示例代碼如下:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://example.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$response = curl_exec($ch);
curl_close($ch);
在以上示例中,curl_exec函數會發送一個GET請求到指定的URL,并將響應保存在$response變量中。你可以根據需要設置其他的cURL選項,例如設置請求方法為POST、設置請求頭、設置請求體等。