php模拟socket一次连接,多次发送数据的实现代码_PHP
程序员文章站
2022-06-06 17:56:10
...
复制代码 代码如下:
//post.php
function Post($host,$port)
{
//$host="127.0.0.1";
//建立连接
$conn = fsockopen($host,$port);
if (!$conn)
{
die("Con error");
}
//循环发送5次数据
//
for($i = 0;$i{
$data="user_name=admin".$i;
WriteData($conn,$host,$data);
echo $i."
";
}
fclose($conn);
}
function WriteData($conn,$host,$data)
{
$header = "POST /test.php HTTP/1.1\r\n";
$header.= "Host : {$host}\r\n";
$header.= "Content-type: application/x-www-form-urlencoded\r\n";
$header.= "Content-Length:".strlen($data)."\r\n";
//Keep-Alive是关键
$header.= "Connection: Keep-Alive\r\n\r\n";
$header.= "{$data}\r\n\r\n";
fwrite($conn,$header);
//取结果
//$result = '';
//while(!feof($conn))
//{
// $result .= fgets($conn,128);
/
//post.php
function Post($host,$port)
{
//$host="127.0.0.1";
//建立连接
$conn = fsockopen($host,$port);
if (!$conn)
{
die("Con error");
}
//循环发送5次数据
//
for($i = 0;$i{
$data="user_name=admin".$i;
WriteData($conn,$host,$data);
echo $i."
";
}
fclose($conn);
}
function WriteData($conn,$host,$data)
{
$header = "POST /test.php HTTP/1.1\r\n";
$header.= "Host : {$host}\r\n";
$header.= "Content-type: application/x-www-form-urlencoded\r\n";
$header.= "Content-Length:".strlen($data)."\r\n";
//Keep-Alive是关键
$header.= "Connection: Keep-Alive\r\n\r\n";
$header.= "{$data}\r\n\r\n";
fwrite($conn,$header);
//取结果
//$result = '';
//while(!feof($conn))
//{
// $result .= fgets($conn,128);
/
推荐阅读
-
PHP 通过Socket收发十六进制数据的实现代码
-
php access 数据连接与读取保存编辑数据的实现代码
-
php模拟socket一次连接,多次发送数据的实现代码
-
php中用socket模拟http中post或者get提交数据的示例代码
-
PHP 通过Socket收发十六进制数据的实现代码
-
php中用socket模拟http中post或者get提交数据的示例代码
-
PHP 通过Socket收发十六进制数据的实现代码
-
PHP+SOCKET 由于套接字没有连接并且没有提供地址,发送或接收数据的请求没有被接受
-
php模拟socket一次连接,多次发送数据的实现代码
-
PHP 通过Socket收发十六进制数据的实现代码_PHP教程