php curl_init 與 curl_setopt函數
curl_init
( PHP 4中“ = 4.0.2 , PHP 5中)
curl_init -初始化一個卷曲會議
描述
資源curl_init ( [字符串$網址=零值] )
初始化一個新的會議,並返回一個卷曲處理用於curl_setopt ( ) , curl_exec ( ) ,和curl_close ( )函數。
參數
網址
如果提供, CURLOPT_URL選項將被設置為它的價值。您可以手動設置使用curl_setopt ( )函數。
返回值
返回一個卷曲處理的成功,虛假的錯誤。
實例
例如# 1初始化一個新的卷曲會議和獲取一個網頁
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.111cn.cn/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
?>