PHP:从套接字或STDIN读取

时间:2013-04-16 16:48:25

标签: php stream stdin

我正在学习PHP中的套接字编程,所以我正在尝试一个简单的echo-chat服务器。

我写了一个服务器,它的工作原理。我可以将两个netcats连接到它,当我在一个netcat中写入时,我会在另一个上复活它。现在,我想实现NC在PHP中的作用

我想使用stream_select查看我是否在STDIN或套接字上有数据,要么将消息从STDIN发送到服务器,要么从服务器读取传入消息。 不幸的是,php手册中的示例并没有给我任何线索如何做到这一点。 我试图简单地$ line = fgets(STDIN)和socket_write($ socket,$ line)但它不起作用。所以我开始走下去,只想让stream_select在用户输入消息时动作。

$read = array(STDIN);
$write = NULL;
$exept = NULL;

while(1){

    if(stream_select($read, $write, $exept, 0) > 0)
        echo 'read';
}

给予

  

PHP警告:stream_select():没有传入流数组   第18行/home/user/client.php

但是当我var_dump($ read)它告诉我,它是一个带有流的数组。

array(1) {
  [0]=>
  resource(1) of type (stream)
}

如何让stream_select工作?


PS:在Python中我可以做类似

的事情
r,w,e = select.select([sys.stdin, sock.fd], [],[])
for input in r:
    if input == sys.stdin:
        #having input on stdin, we can read it now
    if input == sock.fd
        #there is input on socket, lets read it

我在PHP中需要相同的

1 个答案:

答案 0 :(得分:3)

我找到了解决方案。当我使用时,它似乎有效:

$stdin = fopen('php://stdin', 'r');
$read = array($sock, $stdin);
$write = NULL;
$exept = NULL;

而不仅仅是STDIN。尽管php.net说,STDIN已经打开并保存使用 $ stdin = fopen('php:// stdin','r'); 似乎不是,如果你想将它传递给stream_select。 此外,应使用$ sock = fsockopen($ host)创建服务器的套接字;而不是在客户端使用socket_create ...得喜欢这种语言,它的合理性和清晰的手册......

这是使用select连接到echo服务器的客户端的工作示例。

<?php
$ip     = '127.0.0.1';
$port   = 1234;

$sock = fsockopen($ip, $port, $errno) or die(
    "(EE) Couldn't connect to $ip:$port ".socket_strerror($errno)."\n");

if($sock)
    $connected = TRUE;

$stdin = fopen('php://stdin', 'r'); //open STDIN for reading

while($connected){ //continuous loop monitoring the input streams
    $read = array($sock, $stdin);
    $write = NULL;
    $exept = NULL;

    if (stream_select($read, $write, $exept, 0) > 0){
    //something happened on our monitors. let's see what it is
        foreach ($read as $input => $fd){
            if ($fd == $stdin){ //was it on STDIN?
                $line = fgets($stdin); //then read the line and send it to socket
                fwrite($sock, $line);
            } else { //else was the socket itself, we got something from server
                $line = fgets($sock); //lets read it
                echo $line;
            }
        }
    }
}