tcp_client()


클라이언트로써 TCP 접속 시도

Description

void tcp_client(int $tcp_id, string $addr, int $port)

Parameters

Return Value

없음

Example

<?php
include "/lib/sn_tcp_ac.php";
$addr = "192.168.0.100";   // 접속할 TCP 서버의 IP주소
$port = 1470;      // 접속할 TCP 포트 번호
tcp_client(0, $addr, $port);   // 0번 TCP로 TCP 접속 시도
sleep(15);
?>

See also