php模拟发送get请求的三种方式

发布时间:2020-02-29编辑:脚本学堂
有关php模拟发送get请求的三种方式,php编程中通过file_get_contents、curl、fsocket模拟发送get请求数据的例子。

php模拟发送get请求的三种方法

1、php通过file_get_contents模拟发送get请求。
 

复制代码 代码示例:
<?php
$url='http://www.jb200.com/php-function/654.html';
$re=file_get_contents($url);
print_r($re);

2、php通过curl模拟发送get请求。
 

复制代码 代码示例:
<?php
$ch=curl_init('http://www.jb200.com/php-function/651.html');
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_BINARYTRANSFER,true);
$output=curl_exec($ch);
$fh=fopen("out.html",'w');
fwrite($fh,$output);
fclose($fh);

3、php通过fsocket模拟发送get请求。
 

复制代码 代码示例:
<?php
function sock_get($url){ 
$info=parse_url($url);
$fp=fsockopen($info["host"],80,$errno,$errstr,3);
$head="GET ".$info['path']."?".$info["query"]." HTTP/1.0rn";
$head.="Host: ".$info['host']."rn";
$head.="rn";
$write=fputs($fp,$head);
while(!feof($fp)){ 
$line=fgets($fp);
echo $line."<br>";
}
}

函数调用:
 

$url='http://www.jb200.com/jquery-effects/650.html?page=2';
echo "以下是GET方式的响应内容:<br>";
sock_get($url);