您的位置:首页 > 编程语言 > PHP开发

[PHP代码] 用php的fsocket模拟get提交 模拟post提交表单

2016-03-22 17:13 946 查看
<?php

//fsocket模拟post提交

$purl = "http://www.baidu.com";

print_r(parse_url($url));

sock_post($purl, "parm=ping");
http://www.nvzi91.cn/gongjingmilan/29968.html
//fsocket模拟get提交

function sock_get($url, $query)

{http://www.nvzi91.cn/niaodaoyan/29969.html

$info = parse_url($url);

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

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

$head .= "Host: " . $info['host'] . "rn";

$head .= "rn";

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

while (!feof($fp)) {

$line = fread($fp, 4096);

echo $line;

}http://www.nvzi91.cn/waiyinyan/29970.html

}

sock_post($purl, "parm=ping");

function sock_post($url, $query)

{http://www.nvzi91.cn/nxby/29971.html

$info = parse_url($url);

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

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

$head .= "Host: " . $info['host'] . "rn";

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

$head .= "Content-type: application/x-www-form-urlencodedrn";

$head .= "Content-Length: " . strlen(trim($query)) . "rn";

$head .= "rn";

$head .= trim($query);

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

while (!feof($fp)) {

$line = fread($fp, 4096);

echo $line;

}http://www.nvzi91.cn/niaodaoyan/29972.html

}

www.nvzi91.cn

?>

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: