클라이언트로써 TCP 접속 시도
void tcp_client(int $tcp_id, string $addr, int $port)
없음
<?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);
?>