1. 程式人生 > >PHP curl函式使用詳解

PHP curl函式使用詳解

  1. 拿來先試試手
    比如我們以著名的“測試網路是否連線”的網站——百度為例,來嘗試下curl
<?php // create curl resource $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, "baidu.com"); //return the transfer as a string curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // $output contains the output string $output = curl_exec($ch); //echo output echo $output; // close curl resource to free up system resources curl_close($ch); ?>

當你在本地環境瀏覽器開啟這個php檔案時,頁面出現的是百度的首頁,特麼我剛才輸入的“localhost”呢?

上面的程式碼和註釋已經充分說明了這段程式碼在幹啥。

c h = c u r l i

n i t ( )
c u r l c u r l s e t o p t ( ch = curl_init(),建立了一個curl會話資源,成功返回一個控制代碼; curl_setopt( ch, CURLOPT_URL, “baidu.com”),設定URL,不用說;

上面兩句可以合起來變一句$ch = curl_init(“baidu.com”);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0)這是設定是否將響應結果存入變數,1是存入,0是直接echo出;

o u t p u t = c u r l e x e c ( output = curl_exec( ch)執行,然後將響應結果存入$output變數,供下面echo;

curl_close($ch)關閉這個curl會話資源。

PHP中使用curl大致就是這麼一個形式,其中第二步,通過curl_setopt方法來設定引數是最複雜也是最重要的,感興趣可以去看官方的關於可設定引數的詳細參考,長地讓你看得想吐,還是根據需要熟能生巧吧。

小結一下,php中curl用法就是:建立curl會話 -> 配置引數 -> 執行 -> 關閉會話。

下面我們來看一些常用的情景,我們需要如何“打扮自己”(配置引數)才能正確“撩妹”(正確撩到伺服器)。

2.GET和POST請求以及HTTPS協議處理
2.1 GET請求
我們以“在某網站github中搜索關鍵詞”為例

//通過curl進行GET請求的案例

<?php // create curl resource $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, "https://github.com/search?q=react"); //return the transfer as a string curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // $output contains the output string $output = curl_exec($ch); //echo output echo $output; // close curl resource to free up system resources curl_close($ch); ?>

好像和之前那個例子沒啥差別,但這裡有2個可以提的點:
1.預設請求方式是GET,所以不需要顯式指定GET方式;
2.https請求,非http請求,可能有人在各個地方看到過HTTPS請求需要加幾行程式碼繞過SSL證書的檢查等方式來成功請求到資源,但是這裡好像並不需要,原因是什麼?

The two Curl options are defined as:

CURLOPT_SSL_VERIFYPEER - verify the peer’s SSL certificate
CURLOPT_SSL_VERIFYHOST - verify the certificate’s name against host
They both default to true in Curl, and shouldn’t be disabled unless you’ve got a good reason. Disabling them is generally only needed if you’re sending requests to servers with invalid or self-signed certificates, which is only usually an issue in development. Any publicly-facing site should be presenting a valid certificate, and by disabling these options you’re potentially opening yourself up to security issues.

即,除非用了非法或者自制的證書,這大多數出現在開發環境中,你才將這兩行設定為false以避開ssl證書檢查,否者不需要這麼做,這麼做是不安全的做法。

2.2 POST請求
那如何進行POST請求呢?為了測試,先在某個測試伺服器傳了一個接收POST的指令碼:

//testRespond.php

<?php $phpInput=file_get_contents('php://input'); echo urldecode($phpInput); ?>

傳送普通資料
然後在本地寫一個請求:

<?php $data=array( "name" => "Lei", "msg" => "Are you OK?" ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://測試伺服器的IP馬賽克/testRespond.php"); curl_setopt($ch, CURLOPT_POST, 1); //The number of seconds to wait while trying to connect. Use 0 to wait indefinitely. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_POSTFIELDS , http_build_query($data)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); echo $output; curl_close($ch); ?>

瀏覽器執行結果是:

name=Lei&msg=Are you OK?
這裡我們是構造了一個數組作為POST資料傳給伺服器:

curl_setopt($ch, CURLOPT_POST, 1)表明是POST請求;

curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60)設定一個最長的可忍受的連線時間,秒為單位,總不能一直等下去變成木乃伊吧;

curl_setopt( c h , C U R L O P T P O S T F I E L D S , h t t p b u i l d q u e r y ( ch, CURLOPT_POSTFIELDS , http_build_query( data))設定POST的資料域,因為這裡是陣列資料形式的(等會來講json格式),所以用http_build_query處理一下。

對於json資料呢,又怎麼進行POST請求呢?

<?php $data='{"name":"Lei","msg":"Are you OK?"}'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://測試伺服器的IP馬賽克/testRespond.php"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length:' . strlen($data))); curl_setopt($ch, CURLOPT_POSTFIELDS , $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); echo $output; curl_close($ch); ?>

瀏覽器執行,顯示:

{“name”:“Lei”,“msg”:“Are you OK?”}
3. 如何上傳和下載檔案
3.1 POST上傳檔案
同樣遠端伺服器端我們先傳好一個接收指令碼,接收圖片並且儲存到本地,注意檔案和資料夾許可權問題,需要有寫入許可權:

<?php if($_FILES){ $filename = $_FILES['upload']['name']; $tmpname = $_FILES['upload']['tmp_name']; //儲存圖片到當前指令碼所在目錄 if(move_uploaded_file($tmpname,dirname(__FILE__).'/'.$filename)){ echo ('上傳成功'); } } ?>

然後我們再來寫我們本地伺服器的php curl部分:

<?php $data = array('name'=>'boy', "upload"=>"@boy.png"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://遠端伺服器地址馬賽克/testRespond.php"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_POSTFIELDS , $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); echo $output; curl_close($ch); ?>

瀏覽器中執行一下,什麼都米有,去看一眼遠端的伺服器,還是什麼都沒有,並沒有上傳成功。

為什麼會這樣呢?上面的程式碼應該是大家搜尋curl php POST圖片最常見的程式碼,這是因為我現在用的是PHP5.6以上版本,@符號在PHP5.6之後就棄用了,PHP5.3依舊可以用,所以有些同學發現能執行啊,有些發現不能執行,大抵是因為PHP版本的不同,而且curl在這兩版本中實現是不相容的,上面是PHP5.3的實現。

下面來講PHP5.6及以後的實現,:

<?php $data = array('name'=>'boy', "upload"=>""); $ch = curl_init(); $data['upload']=new CURLFile(realpath(getcwd().'/boy.png')); curl_setopt($ch, CURLOPT_URL, "http://115.29.247.189/test/testRespond.php"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_POSTFIELDS , $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); echo $output; curl_close($ch); ?>

這裡引入了一個CURLFile物件進行實現,關於此的具體可查閱文件進行了解。這時候再去遠端伺服器目錄下看看,發現有了一張圖片了,而且確實是我們剛才上傳的圖片。

3.2 獲取遠端伺服器的圖片
遠端伺服器在她自己的目錄下存放了一個圖片叫girl.jpg,地址是她的web伺服器根目錄/girl.jpg,現在我要去獲取這張圖片。

<?php $ch = curl_init(); $fp=fopen('./girl.jpg', 'w'); curl_setopt($ch, CURLOPT_URL, "http://遠端伺服器地址馬賽克/girl.jpg"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_FILE, $fp); $output = curl_exec($ch); $info = curl_getinfo($ch); fclose($fp); $size = filesize("./girl.jpg"); if ($size != $info['size_download']) { echo "下載的資料不完整,請重新下載"; } else { echo "下載資料完整"; } curl_close($ch); ?>

現在,在我們當前目錄下就有了一張剛拿到的照片啦,是不是很激動呢!

這裡值得一說的是curl_getinfo方法,這是一個獲取本次請求相關資訊的方法,對於除錯很有幫助,要善用。

  1. HTTP認證怎麼搞
    那麼拿到了使用者名稱和密碼,我們怎麼通過PHP CURL搞定HTTP認證呢?

PS:這裡偷懶就不去搭HTTP認證去試了,直接放一段程式碼,我們分析下。

function curl_auth( u r l , url, user,$passwd){
c h = c u r l i n i t ( ) ; c u r l s e t o p t a r r a y ( ch = curl_init(); curl_setopt_array( ch, [
CURLOPT_USERPWD => u s e r . : . user.&#x27;:&#x27;. passwd,
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true
]);
r e s u l t = c u r l e x e c ( result = curl_exec( ch);
curl_close($ch);
return $result;
}

$authurl = ‘http://要請求HTTP認證的地址’;

echo curl_auth($authurl,‘vace’,‘passwd’);
這裡有一個地方比較有意思:
curl_setopt_array 這個方法可以通過陣列一次性地設定多個引數,防止有些需要多處設定的出現密密麻麻的curl_setopt方法。

5.利用cookie模擬登陸
首先我們先來分析一下,這個事情分兩步,一是去登陸介面通過賬號密碼登陸,然後獲取cookie,二是去利用cookie模擬登陸到資訊頁面獲取資訊,大致的框架是這樣的。

<?php //設定post的資料 $post = array ( 'email' => '賬戶', 'pwd' => '密碼' ); //登入地址 $url = "登陸地址"; //設定cookie儲存路徑 $cookie = dirname(__FILE__) . '/cookie.txt'; //登入後要獲取資訊的地址 $url2 = "登陸後要獲取資訊的地址"; //模擬登入 login_post($url, $cookie, $post); //獲取登入頁的資訊 $content = get_content($url2, $cookie); //刪除cookie檔案 @ unlink($cookie); var_dump($content); ?>

然後我們思考下下面兩個方法的實現:

login_post($url, $cookie, $post)

get_content($url2, $cookie)

//模擬登入
function login_post($url, $cookie, $post) {
c u r l = c u r l i n i t ( ) ; c u r l s e t o p t ( curl = curl_init(); curl_setopt( curl, CURLOPT_URL, u r l ) ; c u r l s e t o p t ( url); curl_setopt( curl, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($curl, CURLOPT_COOKIEJAR, c o o k i e ) ; c u r l s e t o p t ( cookie); curl_setopt( curl, CURLOPT_POST, 1);
curl_setopt( c u r l , C U R L O P T P O S T F I E L D S , h t t p b u i l d q u e r y ( curl, CURLOPT_POSTFIELDS, http_build_query( post));
curl_exec( c u r l ) ; c u r l c l o s e ( curl); curl_close( curl);
}
//登入成功後獲取資料
function get_content($url, $cookie) {
c h = c u r l i n i t ( ) ; c u r l s e t o p t ( ch = curl_init(); curl_setopt( ch, CURLOPT_URL, u r l ) ; c u r l s e t o p t ( url); curl_setopt( ch, CURLOPT_HEADER, 0);
curl_setopt( c h , C U R L O P T R E T U R N T R A N S F E R , 1 ) ; c u r l s e t o p t ( ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt( ch, CURLOPT_COOKIEFILE, $cookie);
r s = c u r l e x e c ( rs = curl_exec(