tcp_write()


지정한 TCP 세션으로 데이터를 송신

Description

int tcp_write(int $tcp_id, int/string $wbuf [, int $wlen = MAX_STRING_LEN])

Parameters

Return Value

성공 시 송신한 데이터 크기(바이트 수), 실패 시 0

Example

<?php
include "/lib/sn_tcp_ac.php";
$port = 1470;
tcp_server(0, $port);   // 0번 TCP로 접속 대기
$rwbuf = "";
while(1)
{
  $rwlen = tcp_read(0, $rwbuf);   // TCP 수신 데이터를 읽음
  if($rwlen > 0)
    tcp_write(0, $rwbuf);    // 수신한 데이터를 그대로 송신
}
?>

See also