php模拟get请求方法总结
程序员文章站
2022-05-29 12:45:17
...
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模拟QQ登录的方法_php技巧
-
PHP常用魔术常量、魔术方法总结
-
PHP 特殊方法 __set()、__get()_PHP教程_编程技术
-
php 模拟请求 页面跳转有关问题
-
求帮忙修改个php curl模拟post请求内容后并下载文件
-
解析curl提交GET,POST,Cookie的简单方法_PHP
-
采用PHP函数memory_get_usage获取PHP内存清耗量的方法_PHP
-
采用PHP函数memory_get_usage获取PHP内存清耗量的方法
-
php模拟ping命令(php exec函数的使用方法)_PHP
-
PHP函数ini_get_all获取设置选项变量的方法介绍_PHP教程