lorisleiva/cron-translator
最新稳定版本:v0.4.6
Composer 安装命令:
composer require lorisleiva/cron-translator
包简介
Makes CRON expressions human-readable
关键字:
README 文档
README
⏰️ Makes CRON expressions human-readable
Installation
composer require lorisleiva/cron-translator
Usage
use Lorisleiva\CronTranslator\CronTranslator; CronTranslator::translate('* * * * *'); // => Every minute CronTranslator::translate('30 22 * * *'); // => Every day at 10:30pm CronTranslator::translate('0 16 * * 1'); // => Every Monday at 4:00pm CronTranslator::translate('0 0 1 1 *'); // => Every year on January the 1st at 12:00am CronTranslator::translate('0 0 1 * *'); // => The 1st of every month at 12:00am CronTranslator::translate('0 * * * 1'); // => Once an hour on Mondays CronTranslator::translate('* 1-20 * * *'); // => Every minute 20 hours a day CronTranslator::translate('0,30 * * * *'); // => Twice an hour CronTranslator::translate('0 1-5 * * *'); // => 5 times a day CronTranslator::translate('0 1 1-5 * *'); // => 5 days a month at 1:00am CronTranslator::translate('*/2 * * * *'); // => Every 2 minutes CronTranslator::translate('* 1/3 2 * *'); // => Every minute of every 3 hours on the 2nd of every month CronTranslator::translate('1-3/5 * * * *'); // => 3 times every 5 minutes CronTranslator::translate('1,2 0 */2 1,2 *'); // => Twice an hour every 2 days 2 months a year at 12am
You may also provide a locale as a second argument and whether to format the time using the 24-hour format as a third argument.
CronTranslator::translate('30 18 * * *', 'fr'); // => Chaque jour à 6:30pm CronTranslator::translate('30 18 * * *', 'fr', true); // => Chaque jour à 18:30
The following locales are currently supported. Feel free to PR more locales if you need them. ????
ar— Arabicda— Danishde— Germanen— Englishes— Spanishfr— Frenchhi— Hindilv— Latviannl— Dutchpt— Portuguesero— Romanianru— Russiansk— Slovakua— Ukrainianvi— Vietnamesezh— Simplified Chinesezh-TW— Traditional Chinese
统计信息
- 总下载量: 7.56M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 309
- 点击次数: 1
- 依赖项目数: 29
- 推荐数: 7
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04
