2019-09-06 23:53:10 +08:00

7 lines
179 B
PHP
Executable File

<?php
$client = new swoole_client(SWOOLE_SOCK_UDP, SWOOLE_SOCK_SYNC);
$client->connect('224.10.20.30', 9905);
$client->send("hello world");
echo $client->recv() . "\n";
sleep(1);