php中的异步套接字连接

时间:2013-02-20 11:47:59

标签: php sockets asynchronous while-loop

我正在尝试在php中编写异步套接字侦听器代码。但只有第一个请求和其他请求的侦听器响应才能回答它只能接收没有响应的数据包(我正在使用嗅探器进行检查)我也在计算有多少时间循环处于活动状态且循环仅对第一个请求有效.... ..我将展示我的代码:

addr = '192.168.0.117';
$port = 7878;
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
socket_bind($sock, $addr, $port) or die('Could not bind to address');
socket_listen($sock);

$null = NULL;
$clients = Array();
$cc = 0; // loop counter

while(true){

    echo $cc."<br>";
    $cc = $cc +1;

    $read[0] = $sock;

    $ready = socket_select($read,$null,$null,$null);    
    $client = socket_accept($sock);
    $input = socket_read($client, 312); 


    echo $input;

    if($input == "exit"){
        socket_close($client);
        socket_close($sock);
        return false;
    }

    $output = 0x11;
    socket_write($client,$output);
    $input = "";
}

1 个答案:

答案 0 :(得分:0)

在第一个客户端发送exit命令后,您可能正在关闭侦听套接字。当客户端发送client命令时,您应该只关闭exit套接字。而return false循环中的while。这显然意味着它只会处理一个客户端。

if($input == "exit"){
   socket_close($client);
   socket_close($sock);  // Think about this Line.
   return false; // Think about this Line.
}