-
<?php
$postData = array(
'action' => 'req',
'type' => 'post'
);
$postData = http_build_query($postData);
$ops = array(
'http' => array(
'method' => 'POST',
'header' => "Host:localhost\r\nContent-type:application/x-www-form-urlencoded\r\nContent-length:" . strlen($postData)."\r\n",
'timeout' => 60,
'content' => $postData
),
);
$context = stream_context_create($ops);
echo file_get_contents('http://127.0.0.1/reg.php', false, $context);
exit;
//注意file_get_contents的链接里必须加http://
?>
查看全部 -
POST /reg.php HTTP/1.1
Host:localhost
Content-type:application/x-www-form-urlencoded
Content-length:20
type=post&act=reg
上边一坨得一起复制,一行行来直接就访问服务器了
查看全部 -
查看全部
-
http协议源于信息共享
查看全部 -
无状态协议
查看全部 -
查看全部
-
http 是无状态协议 每次请求完成后 请求自动断开 下次请求时 需要从新请求
查看全部 -
面试可能问到:相应结果状态码,比如404等查看全部
-
fiddler模拟get方式请求查看全部
-
三种方式模拟表单发送内容查看全部
-
http模拟POST请求查看全部
-
GET请求方法各个参数解析查看全部
-
http原理查看全部
-
第二输入请求信息查看全部
-
Telnet客户端get方法模拟http请求步骤①查看全部
举报