Передача данных в назначенный TCP сеанс(ID)
int tcp_write(int $tcp_id, int/string $wbuf [, int $wlen = MAX_STRING_LEN])
В случае успеха возвращаются переданные байты, в проиивном случае - 0
<?php
include "/lib/sn_tcp_ac.php";
$port = 1470;
tcp_server(0, $port); // listenning the port for a TCP connection (TCP ID: 0)
$rwbuf = "";
while(1)
{
$rwlen = tcp_read(0, $rwbuf); // Reading TCP receiving buffer
if($rwlen > 0)
tcp_write(0, $rwbuf); // transmitting the received data
}
?>