承接 fyre/period 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

fyre/period

Composer 安装命令:

composer require fyre/period

包简介

A Date Period library.

README 文档

README

FyrePeriod is a free, open-source date period library for PHP.

Table Of Contents

Installation

Using Composer

composer require fyre/period

Periods

use Fyre\Period\Period;
  • $start is a DateTime or string representing the start date.
  • $end is a DateTime or string representing the end date.
  • $granularity is a string representing the granularity, and can be one of either "year", "month", "day", "hour", "minute" or "second", and will default to "day".
  • $excludeBoundaries is a string representing the excluded boundaries, and can be one of either "none", "start", "end" or "both", and will default to "none".
$period = new Period($start, $end, $granularity, $excludeBoundaries);

The Period is an implementation of an Iterator and can be used in a foreach loop.

foreach ($period AS $date) { }

Contains

Determine whether this period contains another Period.

  • $other is the Period to compare against.
$contains = $period->contains($other);

Diff Symmetric

Get the symmetric difference between the periods.

  • $other is the Period to compare against.
$diffSymmetric = $period->diffSymmetric($other);

This method will return a new PeriodCollection.

End

Get the end date.

$end = $period->end();

This method will return a DateTime.

End Equals

Determine whether this period ends on a given date.

  • $date is the DateTime to compare against.
$endEquals = $period->endEquals($date);

Ends After

Determine whether this period ends after a given date.

  • $date is the DateTime to compare against.
$endsAfter = $period->endsAfter($date);

Ends After Or Equals

Determine whether this period ends on or after a given date.

  • $date is the DateTime to compare against.
$endsAfterOrEquals = $period->endsAfterOrEquals($date);

Ends Before

Determine whether this period ends before a given date.

  • $date is the DateTime to compare against.
$endsBefore = $period->endsBefore($date);

Ends Before Or Equals

Determine whether this period ends on or before a given date.

  • $date is the DateTime to compare against.
$endsBeforeOrEquals = $period->endsBeforeOrEquals($date);

Equals

Determine whether this period equals another Period.

  • $other is the Period to compare against.
$equals = $period->equals($other);

Gap

Get the gap between the periods.

  • $other is the Period to compare against.
$gap = $period->gap($other);

This method will return a new Period, or null if there's no gap.

Granularity

Get the granularity.

$granularity = $period->granularity();

Included End

Get the included end date.

$includedEnd = $period->includedEnd();

This method will return a DateTime.

Included Start

Get the included start date.

$includedStart = $period->includedStart();

This method will return a DateTime.

Includes End

Determine whether the Period includes the end date.

$includesEnd = $period->includesEnd();

Includes

Determine whether this period includes a given date.

  • $date is the DateTime to compare against.
$includes = $period->includes($date);

Includes Start

Determine whether the Period includes the start date.

$includesStart = $period->includesStart();

Length

Get the length of the period.

$length = $period->length();

Overlap

Get the overlap of the periods.

  • $other is the Period to compare against.
$overlap = $period->overlap($other);

This method will return a new Period, or null if there's no overlap.

Overlap All

Get the overlap of all the periods.

$overlapAll = $period->overlapAll(...$others);

This method will return a new Period, or null if there's no overlap.

Overlap Any

Get the overlaps of any of the periods.

$overlapAny = $period->overlapAny(...$others);

This method will return a new PeriodCollection.

Overlaps With

Determine whether this period overlaps with another Period.

  • $other is the Period to compare against.
$overlapsWith = $period->overlapsWith($other);

Renew

Create a new period with the same length after this period.

$renewed = $period->renew();

This method will return a new Period.

Start

Get the start date.

$start = $period->start();

This method will return a DateTime.

Start Equals

Determine whether this period starts on a given date.

  • $date is the DateTime to compare against.
$startEquals = $period->startEquals($date);

Starts After

Determine whether this period starts after a given date.

  • $date is the DateTime to compare against.
$startsAfter = $period->startsAfter($date);

Starts After Or Equals

Determine whether this period starts on or after a given date.

  • $date is the DateTime to compare against.
$startsAfterOrEquals = $period->startsAfterOrEquals($date);

Starts Before

Determine whether this period starts before a given date.

  • $date is the DateTime to compare against.
$startsBefore = $period->startsBefore($date);

Starts Before Or Equals

Determine whether this period starts on or before a given date.

  • $date is the DateTime to compare against.
$startsBeforeOrEquals = $period->startsBeforeOrEquals($date);

Subtract

Get the inverse overlap of the periods.

  • $other is the Period to compare against.
$subtract = $period->subtract($other);

This method will return a new PeriodCollection.

Subtract All

Get the inverse overlap of all periods.

$subtractAll = $period->subtractAll(...$others);

This method will return a new PeriodCollection.

Touches

Determine whether this period touches another Period.

  • $other is the Period to compare against.
$touches = $period->touches($other);

Period Collections

use Fyre\Period\PeriodCollection;

All arguments supplied will be used as periods for the collection.

$periodCollection = new PeriodCollection(...$periods);

The PeriodCollection is an implementation of an Iterator and can be used in a foreach loop.

foreach ($periodCollection AS $period) { }

Add

Add periods to the collection.

All arguments supplied will be used as periods to add to the collection.

$added = $periodCollection->add(...$periods);

This method will return a new PeriodCollection.

Boundaries

Get the boundaries of the collection.

$boundaries = $periodCollection->boundaries();

This method will return a new Period, or null if the collection is empty.

Gaps

Get the the gaps between the periods in the collection.

$gaps = $periodCollection->gaps();

This method will return a new PeriodCollection.

Intersect

Intersect a period with every period in the collection.

  • $period is the Period to compare against.
$intersect = $periodCollection->intersect($period);

This method will return a new PeriodCollection.

Overlap All

Get the overlap of all the collections.

All arguments supplied will be used as collections to compare against.

$overlapAll = $periodCollection->overlapAll(...$others);

This method will return a new PeriodCollection.

Sort

Sort the periods.

$sorted = $periodCollection->sort();

This method will return a new PeriodCollection.

Subtract

Get the inverse overlap of the collections.

  • $others is the PeriodCollection to compare against.
$subtract = $periodCollection->subtract($others);

This method will return a new PeriodCollection.

Unique

Filter the periods to remove duplicates.

$unique = $periodCollection->unique();

This method will return a new PeriodCollection.

fyre/period 适用场景与选型建议

fyre/period 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 26 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 05 月 28 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 fyre/period 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 26
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 8
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-05-28