使用PHP CURL的POST資料

來源:互聯網
上載者:User

   curl 是使用URL文法的傳送檔案工具,支援FTP、FTPS、HTTP HTPPS SCP SFTP TFTP TELNET DICT FILE和LDAP。curl 支援SSL認證、HTTP POST、HTTP PUT 、FTP 上傳,kerberos、基於HTT格式的上傳、代理、cookie、使用者+口令證明、檔案傳送恢複、http代理通道和大量其他有用的技巧。

  原來PHP預設並不進行此項功能的擴充,但還是有的,只是沒有讓它生效罷了。開啟PHP安裝目錄,搜尋以下三個檔案 ssleay32.dll、libeay32.dll和 php_curl.dll,一一拷貝到系統目錄下的system32檔案夾下,修改php.ini檔案,找到;extension= php_curl.dll行,去掉前面的;號,儲存,重啟伺服器。

  下面舉幾個例子。

  短多媒體訊息發送

  $xml_data = '

  '.$pns.'

  ';

  $url = 'http://www.nowamagic.net/service/taskSubmit';//接收XML地址

  $header = "Content-type: text/xml";//定義content-type為xml

  $ch = curl_init(); //初始化curl

  curl_setopt($ch, CURLOPT_URL, $url);//設定連結

  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//設定是否返回資訊

  curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//設定HTTP頭

  curl_setopt($ch, CURLOPT_POST, 1);//設定為POST方式

  curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);//POST資料

  $response = curl_exec($ch);//接收返回資訊

  if(curl_errno($ch)){//出錯則顯示錯誤資訊

  print curl_error($ch);

  }

  curl_close($ch); //關閉curl連結

  echo $response;//顯示返回資訊

  POST資料飛信介面

  $username = 13800138000;

  $password = 123456;

  $sendto = 13912345678;

  $message = "測試一個試試看!";

  $curlPost = 'username='.urlencode($username).'&

  password='.urlencode($password).'&

  sendto='.urlencode($sendto).'&

  message='.urlencode($message).'';

  $ch = curl_init();//初始化curl

  curl_setopt($ch,CURLOPT_URL,'http://sms.api.bz/fetion.php');//抓取指定網頁

  curl_setopt($ch, CURLOPT_HEADER, 0);//設定header

  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求結果為字串且輸出到螢幕上

  curl_setopt($ch, CURLOPT_POST, 1);//post提交方式

  curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);

  $data = curl_exec($ch);//運行curl

  curl_close($ch);

  print_r($data);//輸出結果

  飛信介面模式:http://sms.api.bz/fetion.php?username=您的移動飛信登入手機號,&password=您的移動飛信登入密碼,&sendto=接收簡訊的飛信好友手機號,&message=簡訊內容。

  總結一下使用curl方法:

  初始化curl

  使用curl_setopt設定目標url,和其他選項

  curl_exec,執行curl

  執行後,關閉curl

  最後一步就是輸出

  CERL 多線程

  curl一般用來抓取網頁,第二種就是get或者post資料,第三種應用就是實現PHP的多線程任務。下面來實現多線程的:

  /*

  curl 多線程抓取

  */

  /**

  * curl 多線程

  *

  * @param array $array 並行網址

  * @param int $timeout 逾時時間

  * @return array

  */

  function Curl_http($array,$timeout){

  $res = array();

  $mh = curl_multi_init();//建立多個curl語柄

  $startime = getmicrotime();

  foreach($array as $k=>$url){

  $conn[$k]=curl_init($url);

  curl_setopt($conn[$k], CURLOPT_TIMEOUT, $timeout);//設定逾時時間

  curl_setopt($conn[$k], CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');

  curl_setopt($conn[$k], CURLOPT_MAXREDIRS, 7);//HTTp定向層級

  curl_setopt($conn[$k], CURLOPT_HEADER, 0);//這裡不要header,加塊效率

  curl_setopt($conn[$k], CURLOPT_FOLLOWLOCATION, 1); // 302 redirect

  curl_setopt($conn[$k],CURLOPT_RETURNTRANSFER,1);

  curl_multi_add_handle ($mh,$conn[$k]);

  }

  //防止死迴圈耗死cpu 這段是根據網上的寫法

  do {

  $mrc = curl_multi_exec($mh,$active);//當無資料,active=true

  } while ($mrc == CURLM_CALL_MULTI_PERFORM);//當正在接受資料時

  while ($active and $mrc == CURLM_OK) {//當無資料時或請求暫停時,active=true

  if (curl_multi_select($mh) != -1) {

  do {

  $mrc = curl_multi_exec($mh, $active);

  } while ($mrc == CURLM_CALL_MULTI_PERFORM);

  }

  }

  foreach ($array as $k => $url) {

  curl_error($conn[$k]);

  $res[$k]=curl_multi_getcontent($conn[$k]);//獲得返回資訊

  $header[$k]=curl_getinfo($conn[$k]);//返回頭資訊

  curl_close($conn[$k]);//關閉語柄

  curl_multi_remove_handle($mh , $conn[$k]); //釋放資源

  }

  curl_multi_close($mh);

  $endtime = getmicrotime();

  $diff_time = $endtime - $startime;

  return array('diff_time'=>$diff_time,

  'return'=>$res,

  'header'=>$header

  );

  }

  //計算目前時間

  function getmicrotime() {

  list($usec, $sec) = explode(" ",microtime());

  return ((float)$usec + (float)$sec);

  }

  //測試一下,curl 三個網址

  $array = array(

  "http://www.weibo.com/",

  "http://www.renren.com/",

  "http://www.qq.com/"

  );

  $data = Curl_http($array,'10');//調用

  var_dump($data);//輸出

  ?>

  因為$active要等全部url資料接受完畢才變成false,所以這裡用到了curl_multi_exec的傳回值判斷是否還有資料,當有資料的時候就不停調用curl_multi_exec,暫時沒有資料就進入select階段,新資料一來就可以被喚醒繼續執行。這裡的好處就是CPU的無謂消耗沒有了。

  這個多線程的寫法步驟:

  調用curl_multi_init

  迴圈調用curl_multi_add_handle,這一步需要注意的是,curl_multi_add_handle的第二個參數是由curl_init而來的子handle。

  持續調用curl_multi_exec

  根據需要迴圈調用curl_multi_getcontent擷取結果

  調用curl_multi_remove_handle,並為每個字handle調用curl_close

  調用curl_multi_close

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.