dongxun6458 2014-02-24 18:32
浏览 51
已采纳

让PHP服务器脚本持久监听套接字是否阻塞?

I am writing a project that is in 2 parts.

So far I have a front end View.php (HTML5,CSS3,JQuery) and this will query the server.php

The server PHP opens a TCP socket to a server and listens in and can make commands by writing to the socket.

The normal procedure now goes like this

View.php -> Calls using rest API to server.php
Server.php -> Connects to TCP -> Reads from TCP -> Json_encodes & print -> close TCP socket connection.

What I want to achieve is a script Server.php that once started. It constantly listens in to a server, until it gets a shutdown command. I want to keep a fsocket connection open. Any thoughts?

  • 写回答

1条回答 默认 最新

  • dt102282 2016-07-26 20:33
    关注

    The answer is using non blocking programming. In PHP we have specific function for non blocking I/O. For sockets you should use socket_set_nonblock function on a socket resource.

    $port = 8081;
    $address = '127.0.0.1';
    
    if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
        echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "
    ";
        exit();
    }
    if (socket_bind($sock, $address, $port) === false) {
        echo "socket_bind() failed: reason: " . socket_strerror(socket_last_error($sock)) . "
    ";
        exit();
    }
    if (socket_listen($sock, 5) === false) {
        echo "socket_listen() failed: reason: " . socket_strerror(socket_last_error($sock)) . "
    ";
    }
    socket_set_nonblock($sock);
    echo "listening for new connection".PHP_EOL;
    $conneted_clients = [];
    
    do {
       $clientsock = socket_accept($sock);
       if($clientsock !== false){
    
            socket_set_nonblock($clientsock);
            $conneted_clients[] = $clientsock;
            socket_getpeername($clientsock,$address);
            echo "New Connection from: ".$address.PHP_EOL;
    
            $msg = PHP_EOL."Welcome to the PHP Test Server. " . PHP_EOL.
            "To quit, type 'quit'. To shut down the server type 'shutdown'." . PHP_EOL;
    
            socket_write($clientsock, $msg, strlen($msg));
        }
        $status = check_clients($conneted_clients);
    
        if(!$status) break;
        usleep(500000);
    } while (true);
    
    function check_clients($clients)
    {
        foreach($clients as $key => $con)
        {
            if(get_resource_type($con) !== "Socket")
            {   
                socket_getpeername($clientsock,$address);
                echo $address." has diconnected.".PHP_EOL;
                unset($clients[$key]);
                continue;
            }
            if (false === $buff = socket_read($con, 2048)) {
                continue;
            }
    
            $buff = trim($buff);
    
            if ($buff == 'quit') {
                socket_close($con);
                unset($clients[$key]);
                continue;
            }
            if (trim($buff) == 'shutdown') {
                socket_close($con);
                echo "shutdown initiated".PHP_EOL;
                return FALSE;
            }
            if($buff != false || $buff != null)
            {
                $talkback = "PHP: You said '$buff'.".PHP_EOL;
                socket_write($con, $talkback, strlen($talkback));
                echo "$buff".PHP_EOL;
            }
        }
        return TRUE;
    }
    echo "Closing Server";
    socket_close($sock);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog