コード例 #1
0
ファイル: TcpClient.php プロジェクト: KuRLiC/PHPTest
 public static function writeTo($host, $port, $text)
 {
     $client = new TcpClient($host, $port);
     $client->write($text);
 }