dragonmantank/cron-expression 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dragonmantank/cron-expression

Composer 安装命令:

composer require dragonmantank/cron-expression

包简介

CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due

关键字:

README 文档

README

Latest Stable Version Total Downloads Tests StyleCI

The PHP cron expression parser can parse a CRON expression, determine if it is due to run, calculate the next run date of the expression, and calculate the previous run date of the expression. You can calculate dates far into the future or past by skipping n number of matching dates.

The parser can handle increments of ranges (e.g. */12, 2-59/3), intervals (e.g. 0-9), lists (e.g. 1,2,3), W to find the nearest weekday for a given day of the month, L to find the last day of the month, L to find the last given weekday of a month, and hash (#) to find the nth weekday of a given month.

More information about this fork can be found in the blog post here. tl;dr - v2.0.0 is a major breaking change, and @dragonmantank can better take care of the project in a separate fork.

Installing

Add the dependency to your project:

composer require dragonmantank/cron-expression

Usage

<?php

require_once '/vendor/autoload.php';

// Works with predefined scheduling definitions
$cron = new Cron\CronExpression('@daily');
$cron->isDue();
echo $cron->getNextRunDate()->format('Y-m-d H:i:s');
echo $cron->getPreviousRunDate()->format('Y-m-d H:i:s');

// Works with complex expressions
$cron = new Cron\CronExpression('3-59/15 6-12 */15 1 2-5');
echo $cron->getNextRunDate()->format('Y-m-d H:i:s');

// Calculate a run date two iterations into the future
$cron = new Cron\CronExpression('@daily');
echo $cron->getNextRunDate(null, 2)->format('Y-m-d H:i:s');

// Calculate a run date relative to a specific time
$cron = new Cron\CronExpression('@monthly');
echo $cron->getNextRunDate('2010-01-12 00:00:00')->format('Y-m-d H:i:s');

CRON Expressions

A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:

*   *   *   *   *
-   -   -   -   -
|   |   |   |   |
|   |   |   |   |
|   |   |   |   +----- day of week (0-7) (Sunday = 0 or 7) (or SUN-SAT)
|   |   |   +--------- month (1-12) (or JAN-DEC)
|   |   +------------- day of month (1-31)
|   +----------------- hour (0-23)
+--------------------- minute (0-59)

Each part of expression can also use wildcard, lists, ranges and steps:

  • wildcard - match always
    • * * * * * - At every minute.
    • day of week and day of month also support ?, an alias to *
  • lists - match list of values, ranges and steps
    • e.g. 15,30 * * * * - At minute 15 and 30.
  • ranges - match values in range
    • e.g. 1-9 * * * * - At every minute from 1 through 9.
  • steps - match every nth value in range
    • e.g. */5 * * * * - At every 5th minute.
    • e.g. 0-30/5 * * * * - At every 5th minute from 0 through 30.
  • combinations
    • e.g. 0-14,30-44 * * * * - At every minute from 0 through 14 and every minute from 30 through 44.

You can also use macro instead of an expression:

  • @yearly, @annually - At 00:00 on 1st of January. (same as 0 0 1 1 *)
  • @monthly - At 00:00 on day-of-month 1. (same as 0 0 1 * *)
  • @weekly - At 00:00 on Sunday. (same as 0 0 * * 0)
  • @daily, @midnight - At 00:00. (same as 0 0 * * *)
  • @hourly - At minute 0. (same as 0 * * * *)

Day of month extra features:

  • nearest weekday - weekday (Monday-Friday) nearest to the given day
    • e.g. * * 15W * * - At every minute on a weekday nearest to the 15th.
    • If you were to specify 15W as the value, the meaning is: "the nearest weekday to the 15th of the month" So if the 15th is a Saturday, the trigger will fire on Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th.
    • However, if you specify 1W as the value for day-of-month, and the 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not 'jump' over the boundary of a month's days.
  • last day of the month
    • e.g. * * L * * - At every minute on a last day-of-month.
  • last weekday of the month
    • e.g. * * LW * * - At every minute on a last weekday.

Day of week extra features:

  • nth day
    • e.g. * * * * 7#4 - At every minute on 4th Sunday.
    • 1-5
    • Every day of week repeats 4-5 times a month. To target the last one, use "last day" feature instead.
  • last day
    • e.g. * * * * 7L - At every minute on the last Sunday.

Requirements

  • PHP 7.2+
  • PHPUnit is required to run the unit tests
  • Composer is required to run the unit tests

Projects that Use cron-expression

dragonmantank/cron-expression 适用场景与选型建议

dragonmantank/cron-expression 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 506.3M 次下载、GitHub Stars 达 4.67k, 最近一次更新时间为 2017 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「cron」 「schedule」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 dragonmantank/cron-expression 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 dragonmantank/cron-expression 我们能提供哪些服务?
定制开发 / 二次开发

基于 dragonmantank/cron-expression 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 506.3M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4706
  • 点击次数: 25
  • 依赖项目数: 515
  • 推荐数: 17

GitHub 信息

  • Stars: 4669
  • Watchers: 15
  • Forks: 337
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-10-12