웹 소켓 세션의 수신 데이터를 줄 단위(CR + LF로 구분)로 읽음
int ws_read_line(int $tcp_id, string &$rbuf)
성공 시 읽은 데이터 크기(바이트 수), 실패 시 0
<?php
include "/lib/sn_tcp_ws.php";
ws_setup(0, "my_path", "my_proto"); // 웹 소켓 서버 설정 및 접속 대기
$rbuf = "";
while(1)
{
if(ws_state(0) == TCP_CONNECTED)
{
ws_read_line(0, $rbuf); // 수신 데이터를 한 줄 읽음
if(strlen($rbuf) > 0)
{
hexdump($rbuf); // 수신 데이터 출력
$rbuf = "";
}
sleep(1);
}
}
?>