この記事では、偽の post メソッドと get メソッドを実行するための fsockopen の php チュートリアルを提供します。偽の post メソッドと get メソッドの php 処理コードを探している場合は、これが最適です。
//fsocket のシミュレートされた投稿送信
$purl = "http://localhost/netphp/test2.php?uu=rrrrrrrrrr";
print_r(parse_url($url));
sock_post($purl ,"uu=55555555555555555");
//fsocket は送信の取得をシミュレートします
関数 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 .= "ホスト: ".$info['host']."rn";
$head .= "rn";
$write = fputs($fp, $head);
while (!feof($fp ))
{
$line = fread($fp,4096);
echo $line;
}
}
sock_post($purl,"uu=rrrrrrrrrrrr");
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 .= "ホスト: ".$info['host']."rn";
$head .= "リファラー: http://".$info['host'].$info['path']."rn";
$head .= "Content-type: application/x-www-form-urlencodedrn";
$ head .= "Content-Length: ".strlen(trim($query))."rn";
$head .= "rn";
$head .= トリム($query);
$write = fputs($ fp, $head);
while (!feof($fp))
{
$line = fread($fp,4096);
echo $line;
}
}
?>