cronphp
CronPHP is a term used for PHP-based task scheduling solutions that implement cron-like expressions to trigger PHP functions or external commands at specified times. It can run as a standalone daemon or be embedded within PHP applications, typically via the CLI.
It typically supports standard cron syntax, timezone handling, and recurring jobs. Jobs can be defined as PHP
The typical architecture includes a scheduler that evaluates cron expressions against the current time, a runner
In practice, CronPHP projects vary in interface; most require registering a set of jobs with their cron
The term CronPHP covers several open-source libraries and tools, each with its own API. See also cron,