PHP 套接字监听循环 [英] PHP socket Listening loop

查看:66
本文介绍了PHP 套接字监听循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用以下代码,我可以接收1个请求并编写它:

With the following code, I can receive 1 request and write it:

function listen()
{
    // Set time limit to indefinite execution
    set_time_limit (0);

    // Set the ip and port we will listen on
    $address = 'XX.XX.XX.XXX';
    $port = XXXX;

    // Create a TCP Stream socket
    $sock = socket_create(AF_INET, SOCK_STREAM, 0);

    // Bind the socket to an address/port
    $bind = socket_bind($sock, $address, $port);

    // Start listening for connections
    socket_listen($sock);

    /* Accept incoming requests and handle them as child processes */
    $client = socket_accept($sock);

    // Read the input from the client – 1024 bytes
    $input = socket_read($client, 2024);

    // Strip all white spaces from input
    echo $input;

    // Close the master sockets
    $close = socket_close($sock);

    var_dump($close);
}

listen();

但是一旦收到 1 个数据包,它就会自动关闭侦听.我需要继续接收数据包,直到收到退出或任何关闭命令.

But it close automatically listening once it received 1 packet. I need to keep receiving packets until an exit or any close command is received.

我应该如何更改上面的代码以将这个函数变成一个循环?

How should I go about changing the code above to make this function into a loop?

推荐答案

set_time_limit (0);

$address = '46.49.41.188';

$port = 7777;
$con = 1;
$word = "";

$sock = socket_create(AF_INET, SOCK_STREAM, 0);
$bind = socket_bind($sock, $address, $port);

socket_listen($sock);

while ($con == 1)
{
    $client = socket_accept($sock);
    $input = socket_read($client, 2024);

    if ($input == 'exit') 
    {
        $close = socket_close($sock);
        $con = 0;
    }

    if($con == 1)
    {
        $word .= $input;
    }
}

echo $word;

如果请求将退出监听将关闭.该方法已经过测试:) 并且有效.

If request will be exit listening will closed. That method was tested :) and it works.

这篇关于PHP 套接字监听循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆