只要你編譯完的PHP設(shè)置了支持 cURL 擴展,你就可以開始使用cURL函數(shù)了。使用 cURL 函數(shù)的基本思想是先使用 curl_init() 初始化 cURL會話,接著可以通過 curl_setopt() 設(shè)置需要的全部選項,然后使用 curl_exec() 來執(zhí)行會話,當(dāng)執(zhí)行完會話后使用 curl_close() 關(guān)閉會話。這是一個使用 cURL 函數(shù)獲取 example.com 主頁保存到文件的例子:
示例 #1 使用 PHP cURL 模塊獲取 example.com 的主頁
<?php
$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
if(curl_error($ch)) {
fwrite($fp, curl_error($ch));
}
curl_close($ch);
fclose($fp);
?>