php 模拟get,php模拟get请求方法总结

php 模拟发送 get 请求的几种方法总结。

(1)php 通过 file_get_contents 模拟发送 get 请求

$url='http://www.scutephp.com/';

$re=file_get_contents($url);

print_r($re);

(2)php 通过 curl 模拟发送 get 请求

$ch=curl_init('http://www.scutephp.com/');

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 请求

function sock_get($url){

$info=parse_url($url);

$fp=fsockopen($info["host"],80,$errno,$errstr,3);

$head="GET ".$info['path']."?".$info["query"]." HTTP/1.0\r\n";

$head.="Host: ".$info['host']."\r\n";

$head.="\r\n";

$write=fputs($fp,$head);

while(!feof($fp)){

$line=fgets($fp);

echo $line."

";

}

}

该函数的使用方法如下:

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

";

sock_get($url);

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值