您好,登錄后才能下訂單哦!
怎么在php中實現curl攜帶header請求頭信息實現http訪問?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
導讀:
curl請求時添加請求頭信息可以模擬真人操作,不容易被當成是爬蟲機器人(采集),從而可以繞過Incapsula等安全驗證機制。
1、首先使用瀏覽器(示例使用的是火狐瀏覽器)訪問接口網址,使用F12調試,查看請求頭信息,如下:
2、實現代碼:
<?php /** * 開始訪問請求 * @param $url * @return bool|string */ function fetch_url($url) { $header = FormatHeader($url); $useragent = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0'; $timeout= 120; $ch = curl_init($url); curl_setopt($ch, CURLOPT_FAILONERROR, true); //設置請求頭信息 curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //不取得返回頭信息 curl_setopt($ch, CURLOPT_HEADER, 0); // 關閉https驗證 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true ); curl_setopt($ch, CURLOPT_ENCODING, "" ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); curl_setopt($ch, CURLOPT_AUTOREFERER, true ); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout ); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout ); curl_setopt($ch, CURLOPT_MAXREDIRS, 10 ); curl_setopt($ch, CURLOPT_USERAGENT, $useragent); $content = curl_exec($ch); if(curl_errno($ch)) { echo 'Error:' . curl_error($ch); } else { return $content; } curl_close($ch); } //添加請求頭 function FormatHeader($url) { // 解析url $temp = parse_url($url); $query = isset($temp['query']) ? $temp['query'] : ''; $path = isset($temp['path']) ? $temp['path'] : '/'; $header = array ( "POST {$path}?{$query} HTTP/1.1", "Host: {$temp['host']}", "Referer: http://{$temp['host']}/", "Content-Type: text/xml; charset=utf-8", 'Accept: application/json, text/javascript, */*; q=0.01', 'Accept-Encoding:gzip, deflate, br', 'Accept-Language:zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2', 'Connection:keep-alive', 'User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0', 'X-Requested-With: XMLHttpRequest', ); return $header; } ?>
3、調用示例:
<?php //lcg_value() 返回范圍為 (0, 1) 的一個偽隨機數 $url="http://www.xxx.com/getdata.php?v=".lcg_value(); //訪問網址 $html = fetch_url($url);
看完上述內容,你們掌握怎么在php中實現curl攜帶header請求頭信息實現http訪問的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。