PHP code example of taniko / scheduler
1. Go to this page and download the library: Download taniko/scheduler 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/ */
taniko / scheduler example snippets
ake\Chronos\Chronos;
use Taniko\Scheduler\Scheduler;
use Taniko\Scheduler\Schedule\Relative;
$date = new Chronos('2017-04-01 00:00:00');
$schedule = Scheduler::weekly()
->when($date)
->time(1, 0, 0)
->interval(2)
->repeat(3);
$items = $schedule->take(10);
$schedule = Scheduler::relative(Relative::FIRST, Relative::SATURDAY)
->when($date)
->time(1, 0, 0);
$items = $schedule->take(3);