ws_state()


웹 소켓 세션의 상태를 반환

Description

int ws_state(int $tcp_id)

Parameters

Return Value

TCP 세션 상태를 나타내는 정수 값(TCP_CLOSED, TCP_CONNECTED 또는 TCP_LISTEN)

Example

<?php
include "/lib/sn_tcp_ws.php";
ws_setup(0, "my_path", "my_proto");   // 웹 소켓 서버 설정 및 접속 대기
while(ws_state(0) != TCP_CONNECTED)
  ;
echo "Web Socket connected!\r\n";
?>

See also