您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在PHP中使用curl實現一個get、post和cookie請求,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、http的get實現
復制代碼 代碼如下:
$ch = curl_init("http://www.domain.com/api/index.php?test=1") ;
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 獲取數據返回
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在啟用 CURLOPT_RETURNTRANSFER 時候將獲取數據返回
echo $output = curl_exec($ch) ;
/* 寫入文件 */
$fh = fopen("out.html", 'w') ;
fwrite($fh, $output) ;
fclose($fh) ;
2、http的post實現
復制代碼 代碼如下:
<?php
$url = 'http://www.domain.com/api/' ;
$fields = array(
'lname'=>'justcoding' ,
'fname'=>'phplover' ,
'title'=>'myapi',
'age'=>'27' ,
'email'=>'1353777303@gmail.com' ,
'phone'=>'1353777303'
);
//$post_data = implode('&',$fields);
注意:post請求的參數要用get方式那樣連接起來,作為字符串傳遞:
如:$params = 'userId='.$this->user_id.'&auth='.$this->auth.'&sig='.$this->sig
還有跨平臺的請求,curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // 使用自動跳轉 (很重要)
//open connection
$ch = curl_init() ;
//set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL,$url) ;
curl_setopt($ch, CURLOPT_POST,count($fields)) ; // 啟用時會發送一個常規的POST請求,類型為:application/x-www-form-urlencoded,就像表單提交的一樣。
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields); // 在HTTP中的“POST”操作。如果要傳送一個文件,需要一個@開頭的文件名
ob_start();
curl_exec($ch);
$result = ob_get_contents() ;
ob_end_clean();
echo $result;
//close connection
curl_close($ch) ;
復制代碼 代碼如下:
<?php
if($_GET['test'])
{
print_r($_GET);
}
if($_POST)
{
print_r($_POST);
}
php的curl傳送cookie
兩種方式:
一種是自動:
復制代碼 代碼如下:
curl_setopt($curlHandle, CURLOPT_COOKIEJAR, 'cookie.txt '); //保存
curl_setopt($curlHandle, CURLOPT_COOKIEFILE, 'cookie.txt '); //讀取
這樣COOKIE會自動跟上去.
不過要分兩次,一是先訪問產生cookie,接著連結才能用cookie
例子:
復制代碼 代碼如下:
<?php
function get_curlcuconent2($filename,$referer)
{
$cookie_jar = tempnam('./tmp','JSESSIONID');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $filename);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//設置文件讀取并提交的cookie路徑
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_jar);
$filecontent=curl_exec($ch);
curl_close($ch);
$ch = curl_init();
$hostname ="www.domain.com";
//$referer="http://www.domain.com/";
curl_setopt($ch, CURLOPT_URL, $filename);
curl_setopt($ch, CURLOPT_REFERER, $referer); // 看這里,你也可以說你從google來
curl_setopt($ch, CURLOPT_USERAGENT, "www.domain.com");
//$request = "JSESSIONID=abc6szw15ozvZ_PU9b-8r"; //設置POST參數
//curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
// 上面這句,當然你可以說你是baidu,改掉這里的值就ok了,可以實現小偷的功能,$_SERVER['HTTP_USER_AGENT']
//你也可以自己做個 spider 了,那么就偽裝這里的 CURLOPT_USERAGENT 吧
//如果你要把這個程序放到linux上用php -q執行那也要寫出具體的$_SERVER['HTTP_USER_AGENT'],偽造的也可以
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_jar);
curl_setopt($ch, CURLOPT_HEADER, false);//設定是否輸出頁面內容
curl_setopt($ch, CURLOPT_GET, 1); // post,get 過去
$filecontent = curl_exec($ch);
preg_match_all("/charset=(.+?)[NULL\"\']/is",$filecontent, $charsetarray);
if(strtolower($charsetarray[1][0])=="utf-8")
$filecontent=iconv( 'utf-8', 'gb18030//IGNORE' , $filecontent);
curl_close($ch);
return $filecontent;
}
?>
一種自定義:
復制代碼 代碼如下:
$header[]= 'Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, text/html, * '. '/* ';
$header[]= 'Accept-Language: zh-cn ';
$header[]= 'User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727) ';
$header[]= 'Host: '.$你的目標HOST;
$header[]= 'Connection: Keep-Alive ';
$header[]= 'Cookie: '.$你的COOKIE串;
curl_setopt($curlHandel,CURLOPT_HTTPHEADER,$header);
關于如何在PHP中使用curl實現一個get、post和cookie請求就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。