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: *
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-08-30 01:34:57 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.