我正在使用 PHP 套接字在端口 6000 上侦听传入连接,并且它在 99% 的时间里完美地工作,但在向服务器发送请求时,客户端在 1% 的时间里遇到连接错误。我创建了一个不同的脚本,在无限循环中每秒 ping 端口 6000 上的套接字,并将结果写入日志文件,这样我就可以查看它是否中断,并且在 78,000 次成功 ping 中,23 次失败。
我的代码一定有一些小的逻辑错误导致了这种情况。如果有人有任何想法,非常感谢。
插座:
if(!($sock = socket_create(AF_INET, SOCK_STREAM, 0)))
{
$errorcode = socket_last_error();
$errormsg = socket_strerror($errorcode);
die("Couldn't create socket: [$errorcode] $errormsg \n");
}
echo "Socket created \n";
// Bind the source address
if( !socket_bind($sock, "0.0.0.0" , 6000) )
{
$errorcode = socket_last_error();
$errormsg = socket_strerror($errorcode);
die("Could not bind socket : [$errorcode] $errormsg \n");
}
echo "Socket bind OK \n";
if(!socket_listen ($sock , 10))
{
$errorcode = socket_last_error();
$errormsg = socket_strerror($errorcode);
die("Could not listen on socket : [$errorcode] $errormsg \n");
}
echo "Socket listen OK \n";
echo "Waiting for incoming connections... \n";
//start loop to listen for incoming connections
while (true)
{
//Accept incoming connection - This is a blocking call
$client = socket_accept($sock);
//read data from the incoming socket
$input = "";
$input = socket_read($client, 10000000);
if ($input != "")
{
// do my logic here with $input
}
}
socket_close($sock);
编辑:不,我没有使用 CMD 来 ping。这是我正在执行 ping 操作的 PHP 脚本:
<?php
$host = '0.0.0.0';
$port = 6000;
$waitTimeoutInSeconds = 1;
while(true)
{
if($fp = fsockopen($host,$port,$errCode,$errStr,$waitTimeoutInSeconds))
{
$file = 'log.txt';
$current = file_get_contents($file);
$today = date("Y-m-d_H:i:s");
$current .= $today . " - SUCCESS\n";
file_put_contents($file, $current);
}
else
{
$file = 'log.txt';
$current = file_get_contents($file);
$today = date("Y-m-d_H:i:s");
$current .= $today . " - FAILED\n";
file_put_contents($file, $current);
}
fclose($fp);
sleep(1);
}
?>
对于实际事务,客户端在通过原始文本中的 xml 请求发送时仅连接一瞬间,然后它会执行一些不到一秒的逻辑。由于它在 ping 测试中失败,这意味着我的听众由于某种原因而中断了一秒钟,不是吗?