curl進行傳值 之(post)
阿新 • • 發佈:2018-11-29
<?php header("content-type:text/html;charset=utf-8"); function curlPost($url,$data='',$method){ $ch = curl_init(); //1.初始化 curl_setopt($ch, CURLOPT_URL, $url); //2.請求地址 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);//3.請求方式 //4.引數如下 /* curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);//https curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');//模擬瀏覽器 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_AUTOREFERER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER,array('Accept-Encoding: gzip, deflate'));//gzip解壓內容 curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate'); */ if($method=="POST"){//5.post方式的時候新增資料 curl_setopt($ch, CURLOPT_POSTFIELDS, $data); } curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $tmpInfo = curl_exec($ch);//6.執行 if (curl_errno($ch)) {//7.如果出錯 return curl_error($ch); } curl_close($ch);//8.關閉 return $tmpInfo; } //$url中的網址是我們post或get所要傳值的php $url="http://www.php7.com/dwzchd/2.1.php"; //$option中是我們所傳的值 $options=array( 'name'=>'zhangsanlisiwangwu' ); //最後引用curlPost這個類(網址,資料,傳值方式); $result=curlPost($url,$options,'POST'); echo $result;
1.cURL介紹
cURL 是一個利用URL語法規定來傳輸檔案和資料的工具,支援很多協議,如HTTP、FTP、TELNET等。最爽的是,PHP也支援 cURL 庫。本文將介紹 cURL 的一些高階特性,以及在PHP中如何運用它。
2.基本結構 在學習更為複雜的功能之前,先來看一下在PHP中建立cURL請求的基本步驟:
(1)初始化 curl_init()
(2)設定變數 curl_setopt() 。最為重要,一切玄妙均在此。有一長串cURL引數可供設定,它們能指定URL請求的各個細節。要一次性全部看完並理解可能比較困難,所以今天我們只試一下那些更常用也更有用的選項。
(3)執行並獲取結果 curl_exec()
(4)釋放cURL控制代碼 curl_close()
3.cURL實現Get和Post