ws_readn()


Чтение заданного количества байтов из сеанса веб-сокета

Описание

int ws_readn(int $tcp_id, string &$rbuf, int $rlen)

Параметры

Возврат значений

Если в буфере приема веб-сокета есть данные, равные или превыщающие $rlen, то будет возвращен $rlen, в противном случае - 0

Пример

<?php
include "/lib/sn_tcp_ws.php";
// configuring a websocket and waiting for a connection
ws_setup(0, "my_path", "my_proto");
$rbuf = "";
while(1)
{
  if(ws_state(0) == TCP_CONNECTED)
  {
    /* If there are data equal to or more than 100,
    it copies 100 bytes of data to the $rbuf and returns 100 */
    ws_readn(0, $rbuf, 10);
    if(strlen($rbuf) > 0)
    {
      hexdump($rbuf); 
      $rbuf = "";
    }
    sleep(1);
  }
}
?>

Смотрите также