欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php的curl携带header请求头信息实现http访问的方法

程序员文章站 2022-07-03 19:23:34
导读:curl请求时添加请求头信息可以模拟真人操作,不容易被当成是爬虫机器人(采集),从而可以绕过incapsula等安全验证机制。1、首先使用浏览器(示例使用的是火狐浏览器)访问接口网址,使用f12...

 导读:

curl请求时添加请求头信息可以模拟真人操作,不容易被当成是爬虫机器人(采集),从而可以绕过incapsula等安全验证机制。

1、首先使用浏览器(示例使用的是火狐浏览器)访问接口网址,使用f12调试,查看请求头信息,如下:

php的curl携带header请求头信息实现http访问的方法

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访问的方法的文章就介绍到这了,更多相关php的curl请求头信息实现http访问内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!