clear.php 220 B

12345678910
  1. <?php
  2. $tm1 = swoole_timer_tick(1000, function () {
  3. echo "tick 1000ms. \n";
  4. });
  5. swoole_timer_tick(3000, function ($id) use ($tm1) {
  6. echo "tick , clear\n";
  7. swoole_timer_clear($id);
  8. swoole_timer_clear($tm1);
  9. });