PHP code example of brofian / cron-translator
1. Go to this page and download the library: Download brofian/cron-translator 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/ */
brofian / cron-translator example snippets
use Brofian\CronTranslator\CronTranslator;
// 'Jede Minute'
echo CronTranslator::expressionToString('* * * * *');
// 'Jede Minute der 1.Stunde an jedem 2.Tag, im März am einem Donnerstag'
echo CronTranslator::expressionToString('* 1 2 3 4');
// 'Die 17. und 30.Minute der 2.Stunde von Montag bis Freitag'
echo CronTranslator::expressionToString('17,30 2 * * 1-5');
// 'Jede 15.Minute von 10 Uhr bis 12 Uhr von Montag bis Freitag'
echo CronTranslator::expressionToString('*/15 10-12 * * 1-5');
echo CronTranslator::expressionToString('* * * * *', 'de');