ws_readn()


웹 소켓 세션의 수신 데이터를 지정된 크기만큼 읽음

Description

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

Parameters

Return Value

성공 시 읽은 데이터 크기(바이트 수), 실패 시 0

Example

<?php
include "/lib/sn_tcp_ws.php";
ws_setup(0, "my_path", "my_proto");   // 웹 소켓 서버 설정 및 접속 대기
$rbuf = "";
while(1)
{
  if(ws_state(0) == TCP_CONNECTED)
  {
    ws_readn(0, $rbuf, 10);   // 수신 데이터가 10바이트 이상 되면 읽기
    if(strlen($rbuf) > 0)
    {
      hexdump($rbuf);   // 데이터 출력
      $rbuf = "";
    }
    sleep(1);
  }
}
?>

See also