php 模拟get,PHP fsockopen模拟POST/GET方法

本文介绍了如何使用PHP的fsockopen函数来模拟HTTP的GET和POST请求。通过示例代码展示了如何构造请求头并发送数据到指定URL,从而与服务器进行交互。接收端的PHP脚本可以接收到这些请求并打印出接收到的数据。
摘要由CSDN通过智能技术生成

fsockopen 除了前面小节的模拟生成 HTTP 连接之外,还能实现很多功能,比如模拟 post 和 get 传送数据的方法。比如下面的例子:

//fsocket模拟post提交

$url = "http://localhost/test2.php?site=nowamagic.net";

print_r(parse_url($url));

//echo $query;

sock_get($url,"user=gonn");

//sock_get($url, $query);

//fsocket模拟get提交

function sock_get($url, $query)

{

$data = array(

'foo'=>'bar',

'baz'=>'boom',

'site'=>'www.nowamagic.net',

'name'=>'nowa magic');

$query_str = http_build_query($data);

$info = parse_url($url);

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

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

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

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

$head .= "\r\n";

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

while (!feof($fp))

{

$line = fread($fp,4096);

echo $line;

}

}

sock_post($url,"user=gonn");

function sock_post($url, $query)

{

$info = parse_url($url);

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

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

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

$head .= "Referer: http://".$info['host'].$info['path']."\r\n";

$head .= "Content-type: application/x-www-form-urlencoded\r\n";

$head .= "Content-Length: ".strlen(trim($query))."\r\n";

$head .= "\r\n";

$head .= trim($query);

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

while (!feof($fp))

{

$line = fread($fp,4096);

echo $line;

}

}

接收页面 test2.php 的代码为:

$data = $_REQUEST;

echo '

';

print_r( $data );

echo '

';
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值