程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP語言中php curl的幾種應用方式

PHP語言中php curl的幾種應用方式

編輯:關於PHP編程

我們通過對1. php curl的默認調用方法,get方式訪問url

  1. ....     
  2.     $ch = curl_init();     
  3.     curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//設置http頭     
  4.     curl_setopt($ch, CURLOPT_ENCODING, "gzip" ); 
    //設置為客戶端支持gzip壓縮     
  5.     curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30 ); 
    //設置連接等待時間     
  6.     curl_setopt($ch, CURLOPT_URL, $url );     
  7.     curl_exec( $ch );     
  8.     if ($error = curl_error($ch) ) {     
  9.         //出錯處理     
  10.         return -1;     
  11.     }     
  12.     fclose($fp);       
  13.     
  14.     $curl_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    //獲取http返回值     
  15.     if( $curl_code == 200 ) {     
  16.         //正常訪問url     
  17.     }     
  18.     //異常     
  19. ....    

2. 設置http header支持php curl訪問lighttpd服務器

  1. $header[]= 'Expect:';  

3. 設置curl,只獲取http header,不獲取body:

  1. curl_setopt($ch, CURLOPT_HEADER, 1);       
  2. curl_setopt($ch, CURLOPT_NOBODY, 1);      

或者只獲取body:

  1. curl_setopt($ch, CURLOPT_HEADER, 0);   
    // make sure we get the body     
  2. curl_setopt($ch, CURLOPT_NOBODY, 0);     

4. 訪問虛擬主機,需設置Host

  1. $header[]= 'Host: '.$host;   

5. 使用post, put, delete等REStful方式訪問url

  1. post:   
  2.  
  3.   curl_setopt($ch, CURLOPT_POST, 1 );   
  4.  
  5. put, delete:   
  6.  
  7.   curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");  
    //或者PUT,需要服務器支持這些方法。  

6. php curl保存下載內容為文件

  1. curl_setopt($ch, CURLOPT_FILE, $fp);  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved