Created
April 10, 2012 22:43
-
-
Save cardil/2355211 to your computer and use it in GitHub Desktop.
CrontabManager simple example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use php\manager\crontab\CrontabManager; | |
$crontab = new CrontabManager(); | |
$job = $crontab->newJob(); | |
$job->on('* * * * *'); | |
$job->onMinute('20-30')->doJob("echo foo;"); | |
$crontab->add($job); | |
$job->onMinute('35-40')->doJob("echo bar;"); | |
$crontab->add($job); | |
$crontab->save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment