コードをコピーします コードは次のとおりです:
//post.php
function Post($host,$port)
{
//$host="127.0.0.1" ;
// 接続を確立します
$conn = fsockopen($host,$port);
{
die("Con error")
}
// ループでデータを 5 回送信します
//
for($i = 0;$i<5;$i++)
{
$data="user_name=admin".$i;
WriteData($conn,$host,$data); i."
";
}
fclose($conn)
}
function WriteData($conn,$host,$data)
{
$header = "POST /test.php HTTP/1.1 rn";
$header. = "ホスト : {$host}rn";
$header.= "コンテンツ タイプ: application/x-www-form-urlencodedrn";
$header.= "コンテンツの長さ:" .strlen($data). "rn";
//キープアライブはキーです
$header.= "{$data}rnrn"; conn,$header);
/ /結果を取得します
//$result = '';
//while(!feof($conn))
//{
// $result .= fgets($conn,128) );
//}
// return $result;
Post('127.0.0.1',80)> コードをコピーします:
//test.php
$ fp = fopen('result.txt','a');
$data = $_POST['user_name']." -- ". date('Y-m-d H: i:s')."rn";
fwrite($fp);
http://www.bkjia.com/PHPjc/323910.htmlwww.bkjia.com
true
http://www.bkjia.com/PHPjc/323910.html
技術記事
次のようにコードをコピーします。 ?php //post.php function Post($host,$port) { //$host="127.0.0.1"; //接続を確立します $conn = fsockopen($host,$port); ; if (!$conn) { die("Con error") } //ループ...