php CURL post使用

來源:互聯網
上載者:User
cURL 是一個利用URL文法規定來傳輸檔案和資料的工具,支援很多協議,如HTTP、FTP、TELNET等。最爽的是,PHP也支援 cURL 庫。本文將介紹 cURL 的一些進階特性,以及在PHP中如何運用它。

為什麼要用 cURL?

是的,我們可以通過其他辦法擷取網頁內容。大多數時候,我因為想偷懶,都直接用簡單的PHP函數:

不過,這種做法缺乏靈活性和有效錯誤處理。而且,你也不能用它完成一些高難度任務??比如處理coockies、驗證、表單提交、檔案上傳等等。

引用:
cURL 是一種功能強大的庫,支援很多不同的協議、選項,能提供 URL 請求相關的各種細節資訊。

基本結構

在學習更為複雜的功能之前,先來看一下在PHP中建立cURL請求的基本步驟:

1 初始化

2 設定變數

3 執行並擷取結果

4 釋放cURL控制代碼

以下為引用的內容:

// 1. 初始化
$ch = curl_init();
// 2. 設定選項,包括URL
curl_setopt($ch, CURLOPT_URL, "http://www.nettuts.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
// 3. 執行並擷取HTML文檔內容
$output = curl_exec($ch);
// 4. 釋放curl控制代碼
curl_close($ch);

檢查錯誤

你可以加一段檢查錯誤的語句(雖然這並不是必需的):

$output = curl_exec($ch);
if ($output === FALSE) {
echo "cURL Error: " . curl_error($ch);
}

請注意,比較的時候我們用的是“=== FALSE”,而非“== FALSE”。因為我們得區分 空輸出 和 布爾值FALSE,後者才是真正的錯誤。

用POST方法發送資料

當發起GET請求時,資料可以通過“查詢字串”(query string)傳遞給一個URL。例如,在google中搜尋時,搜尋關鍵即為URL的查詢字串的一部分:

http://www.google.com/search?q=nettuts

這種情況下你可能並不需要cURL來類比。把這個URL丟給“file_get_contents()”就能得到相同結果。

不過有一些HTML表單是用POST方法提交的。這種表單提交時,資料是通過 HTTP請求體(request body) 發送,而不是查詢字串。例如,當使用CodeIgniter論壇的表單,無論你輸入什麼關鍵字,總是被POST到如下頁面:

http://codeigniter.com/forums/do_search/

你可以用PHP指令碼來類比這種URL請求。首先,建立一個可以接受並顯示POST資料的檔案

//使用discuzX2.0作測試

//建立cookie臨時檔案

$cookiefile = tempnam('./temp', 'cookie');

$url = 'http://dx/member.php?mod=logging&action=login&loginsubmit=yes';

$post_data = array(

'loginfield' => 'username',

'username' => 'ybb',

'password' => '123456',

);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_HEADER, 0);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

// 我們在POST資料哦!

curl_setopt($ch, CURLOPT_POST, 1);

// 把post的變數加上

curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

//儲存cookie檔案

curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiefile);

$output = curl_exec($ch);

//調試使用

if ($output === FALSE) {

echo "cURL Error: " . curl_error($ch);

}

curl_close($ch);

//進出到發貼頁面

$post_url = 'http://dx/forum.php?mod=post&action=newthread&fid=2';

$ch = curl_init($post_url);

curl_setopt($ch, CURLOPT_HEADER, 0);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

//讀取cookie 檔案

curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiefile);

echo $data = curl_exec($ch);

curl_close($ch);

?>

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.