[php]代码库
<?php
//fsocket模拟post提交
$purl = "http://www.baidu.com";
print_r(parse_url($url));
sock_post($purl, "parm=ping");
//fsocket模拟get提交
function sock_get($url, $query)
{
$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;
}
}
sock_post($purl, "parm=ping");
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.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;
}
}
?>
初级程序员
by: linux 发表于:2015-11-06 14:10:09 顶(6) | 踩(2) 回复
大爷只想问你,代码拷一半,$purl 写个百度,你告诉我你怎么模拟的,百度会理你传参?TM的80端口,你还能给百度搞80端口了?WTF!!!!这种代码放上来做什么?!别耽误人家时间好么!!!!!
回复评论