PHP curl_init函數(shù)
PHP curl_init函數(shù)
(PHP 4 >= 4.0.2, PHP 5)
curl_init — 初始化一個(gè)cURL會(huì)話(huà)
說(shuō)明
resource curl_init ([ string $url = NULL ] )
初始化一個(gè)新的會(huì)話(huà),返回一個(gè)cURL句柄,供curl_setopt(), curl_exec()和curl_close() 函數(shù)使用。
參數(shù)
url
如果提供了該參數(shù),CURLOPT_URL 選項(xiàng)將會(huì)被設(shè)置成這個(gè)值。你也可以使用curl_setopt()函數(shù)手動(dòng)地設(shè)置這個(gè)值。
返回值
如果成功,返回一個(gè)cURL句柄,出錯(cuò)返回 FALSE。
實(shí)例
初始化一個(gè)新的cURL會(huì)話(huà)并獲取一個(gè)網(wǎng)頁(yè)
<?php // 創(chuàng)建一個(gè)新cURL資源 $ch = curl_init(); // 設(shè)置URL和相應(yīng)的選項(xiàng) curl_setopt($ch, CURLOPT_URL, "http://www.runoob.com/"); curl_setopt($ch, CURLOPT_HEADER, 0); // 抓取URL并把它傳遞給瀏覽器 curl_exec($ch); // 關(guān)閉cURL資源,并且釋放系統(tǒng)資源 curl_close($ch); ?>
相關(guān)文章
- PHP 簡(jiǎn)介
- PHP 字符串
- PHP 運(yùn)算符
- PHP 數(shù)組排序
- PHP 超級(jí)全局變量
- PHP 魔術(shù)常量
- PHP 命名空間 namespace
- PHP 文件上傳
- PHP 發(fā)送電子郵件
- PHP 高級(jí)過(guò)濾器
- PHP array_diff() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP krsort() 函數(shù)
- PHP prev() 函數(shù)
- PHP sort() 函數(shù)