웹 소켓 세션으로 데이터를 송신
int ws_write(int $tcp_id, int/string $wbuf [, int $wlen = MAX_STRING_LEN])
성공 시 송신한 데이터 크기(바이트 수), 실패 시 0
<?php
include "/lib/sn_tcp_ws.php";
$rwbuf = "";
ws_setup(0, "my_path", "my_proto"); // 웹 소켓 서버 설정 및 접속 대기
while(1)
{
if(ws_state(0) == TCP_CONNECTED)
{
$rwlen = ws_read(0, $rwbuf); // 수신 데이터를 읽기
if($rwlen > 0)
ws_write(0, $rwbuf); // 수신한 데이터를 그대로 송신
}
sleep(1);
}
?>