vvondra / php-daemon
A base implementation of a UNIX daemon in PHP
v1.0.0
2013-08-31 19:36 UTC
Requires
- php: >=5.3.0
- ext-posix: *
This package is not auto-updated.
Last update: 2025-05-10 18:21:40 UTC
README
If you're comfortable with PHP and want to have a PHP script running as a daemon (meaning you can leave it running in the background, stop, restart it and check it's status) this class provides a basic implementation of the necessary features.
Running a script as a daemon can be more convenient than a CRON triggered task and you can be sure it will be running in only one process at a time..
Simply subclass it and implement the run() method. You might find the React Event Loop useful if you want an alternative to sleeping.