1. Go to this page and download the library: Download kwstanislav/crunz library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kwstanislav / crunz example snippets
// tasks/backupTasks.php
use Crunz\Schedule;
$schedule = new Schedule();
$schedule->run('cp project project-bk')
->daily();
return $schedule;
// tasks/FirstTasks.php
use Crunz\Schedule;
$schedule = new Schedule();
$schedule->run('cp project project-bk')
->daily()
->description('Create a backup of the project directory.');
// ...
// IMPORTANT: You must return the schedule object
return $schedule;
use Crunz\Schedule;
$schedule = new Schedule();
$schedule->run('/usr/bin/php backup.php', ['--destination' => 'path/to/destination'])
->everyMinute()
->description('Copying the project directory');
return $schedule;
use Crunz\Schedule;
$schedule = new Schedule();
$x = 12;
$schedule->run(function() use ($x) {
// Do some cool stuff in here
})
->everyMinute()
->description('Copying the project directory');
return $schedule;
use Crunz\Schedule;
$schedule = new Schedule();
$schedule->add('command/to/run')
->everyFiveMinutes();
$schedule
->onError(function(){
// Send mail
})
->onError(function(){
// Do something else
});
return $schedule;
// ...
$schedule = new Schedule();
$schedule->run('/usr/bin/php email.php')
->everyFiveMinutes()
->before(function() {
// Do something before the task runs
})
->before(function() {
// Do something else
})
->after(function() {
// After the task is run
});
$schedule
->before(function () {
// Do something before all events
})
->after(function () {
// Do something after all events are finished
}
->before(function () {
// Do something before all events
});
// ...