https://github.com/staabm/cronschedule
App which transforms a cronexpression into a schedule table
https://github.com/staabm/cronschedule
Last synced: about 1 year ago
JSON representation
App which transforms a cronexpression into a schedule table
- Host: GitHub
- URL: https://github.com/staabm/cronschedule
- Owner: staabm
- Created: 2013-12-13T09:21:09.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-05-12T14:05:25.000Z (about 10 years ago)
- Last Synced: 2025-03-05T11:39:13.021Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cronschedule
============
My first Silex experiments. App just takes a cronexpression and tells you when the next runs will be scheduled.
Example
=======
Input
```
"3-59/15 2,6-12 */15 1 2-5"
```
Output
```
First run in aprox. 3 weeks
2014-01-15 02:03:00
15 mins
2014-01-15 02:18:00
15 mins
2014-01-15 02:33:00
15 mins
2014-01-15 02:48:00
3 hours
2014-01-15 06:03:00
15 mins
2014-01-15 06:18:00
15 mins
2014-01-15 06:33:00
15 mins
2014-01-15 06:48:00
15 mins
2014-01-15 07:03:00
15 mins
2014-01-15 07:18:00
15 mins
2014-01-15 07:33:00
15 mins
2014-01-15 07:48:00
15 mins
2014-01-15 08:03:00
15 mins
2014-01-15 08:18:00
15 mins
2014-01-15 08:33:00
```