웹 소켓 서버 설정 및 접속 대기
void ws_setup(int $tcp_id, string $path, string $proto [, $port = 0])
없음
<?php
include "/lib/sn_tcp_ws.php";
ws_setup(0, "my_path", "my_proto"); // 웹 소켓 서버 설정 및 접속 대기
while(1)
{
if(ws_state(0) == TCP_CONNECTED)
{
ws_write(0, "hello, world!\r\n"); // 메시지 전송
sleep(1);
}
}
?>