<?php getopt(string $short_options, array $long_options = [], int &$rest_index = null): array|false
<?php require __DIR__ . '/../vendor/autoload.php'; $args = getopt('t:l:r:'); $t = isset($args['t']) ? (int)$args['t'] : 0; $loop = isset($args['l']) && class_exists('React\EventLoop\\' . $args['l'] . 'Loop') ? 'React\EventLoop\\' . $args['l'] . 'Loop' : Loop::get();