tcp_read()


지정한 TCP 세션의 수신 데이터를 읽음

Description

int tcp_read(int $tcp_id, string &$rbuf [, int $rlen = MAX_STRING_LEN])

Parameters

Return Value

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

Example

<?php
include "/lib/sn_tcp_ac.php";
$port = 1470;
tcp_server(0, $port);   // 0번 TCP로 접속 대기
$rbuf = "";
while(1)
{
  $rlen = tcp_read(0, $rbuf);   // TCP 수신 데이터를 읽음
  if($rlen > 0)
    echo "$rbuf\r\n";     // 데이터 출력
}
?>

See also