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

利用fsockopen模拟HTTP发送请求

程序员文章站 2024-02-08 18:14:16
...

首先检查PHP.ini 中 allow_url_fopen 选项是否开启,需要开启

GET 方式发送请求

$fp = fsockopen('localhost', 80, $errno, $errstr, 10);//host 端口 错误码 错误消息 超时时间

if(!$fp){
    echo $errstr;die;
}

$http = "";
//请求行
$http = "GET /http/server.php?use=111&name=oop HTTP/1.1\r\n";//以\r\n结尾 固定格式 连接地址为绝对路径

//请求头
$http .= "Host: localhost\r\n";
$http .= "Connection: close\r\n\r\n";//close:返回结果后关闭连接 请求头结束:结尾两个\r\n

//get 请求方式没有请求体
fwrite($fp, $http);

$result = "";

while(!feof($fp)){
    $result .= fgets($fp);//默认一次取1k字节数据
}

echo  $result;

POST方式

$fp = fsockopen('localhost', 80, $errno, $errstr, 10);

if(!$fp){
    echo $errstr;exit();
}

$http = "";
$body = "[email protected]&username=admin";
//请求行
$http .= "POST /http/server.php HTTP/1.1 \r\n";
//请求头
$http .= "Host: localhost\r\n";
$http .= "Connection: close\r\n";
$http .= "Cookie: username=111;uid=2\r\n";
$http .= "User-agent: firefox\r\n";
$http .= "Content-type: application/x-www-form-urlencoded\r\n";//必须传
$http .= "Content-length: ".strlen(trim($body))."\r\n\r\n";//请求行和体中间两个\r\n 

//请求体
$http .= $body."\r\n";
//发送
fwrite($fp, $http);

$result = "";
while (!feof($fp)) {

    $result .= fgets($fp);

}

echo $result;
相关标签: http