Swoole\Event::wait

Start event loop

説明

public static void Swoole\Event::wait()

Starts the event loop. Place this at the end of your PHP program.

戻り値

No return value.

例1 Swoole\Event::wait example

<?php
Swoole\Timer::tick(1000, function () {
    echo "hello\n";
});

Swoole\Event::wait();
?>