Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 412 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 412 Bytes

timer

php定时器,参考了workerman源码 实现一个单进程(守护进程)的定时器。

原理

  1. 利用pcntl,守护进程化
  2. 利用stream_select的超时机制,来实现sleep,如果有event扩展的话,优先使用event扩展
  3. 定时器是时间堆的方式实现,利用php的spl的优先队列

install

composer require guanhui07/timer

use

./test/index.php