client.php 179 B

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