How to Establish a UDP Service

Establishing a UDP service in Workerman is very simple, similar to the following code:

$udp_worker = new Worker('udp://0.0.0.0:9292');
$udp_worker->onMessage = function($connection, $data){
    var_dump($data);
    $connection->send('get');
};
Worker::runAll();

Note: Since UDP is connectionless, the UDP service does not have onConnect and onClose events.