smilesrg/dateperiod
Composer 安装命令:
composer require smilesrg/dateperiod
包简介
Simplifying getting a first/last day of week, month, year.
README 文档
README
Simplifying getting a first/last day of week, month, year.
#Installation The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist smilesrg/dateperiod "*"
or add
"smilesrg/dateperiod": "*"
to the require section of your composer.json file.
#Usage
There are such classes available:
- YearPEriod
- MonthPeriod
- WeekPeriod
- DayPeriod
DayPeriod is for getting the start and the end of the day. You can skip passing DateTime object to the constructor, then the current date will be taken.
<?php require 'vendor/autoload.php'; use DatePeriod\YearPeriod; use DatePeriod\MonthPeriod; use DatePeriod\WeekPeriod; use DatePeriod\DatePeriod; use DatePeriod\DayPeriod; // Example of retrieving start and end dates of the current year $yearPeriod = new YearPeriod(); echo $yearPeriod->getStartDate()->format("Y-m-d") . PHP_EOL; // prints the first day of the current year echo $yearPeriod->getEndDate()->format("Y-m-d") . PHP_EOL; // prints the last day of the current year // Example of getting first and last days of month for the given date $date = new \DateTime('06-06-2000'); $monthPeriod = new MonthPeriod($date); // Dates are immutable. You can't chante start and end dates inside of DatePeriod classes. $startDate = $monthPeriod->getStartDate(); $startDate->modify('+5 days'); echo $startDate->format("Y-m-d") . PHP_EOL; // 2000-06-06 $startDate = $monthPeriod->getEndDate(); $startDate->modify('+10 days'); echo $startDate->format("Y-m-d") . PHP_EOL; // 2000-07-10 // But start date won't chante inside the DatePeriod objects echo $monthPeriod->getStartDate()->format("Y-m-d") . PHP_EOL; // 2000-06-01 echo $monthPeriod->getEndDate()->format("Y-m-d") . PHP_EOL; // 2000-06-30 // Example of getting first and last days of week for the given date // By default, the start date time is set to 00:00:00 and end date time is set to 23:59:59 $date = new \DateTime('02-03-2015'); $weekPeriod = new WeekPeriod($date); echo $weekPeriod->getStartDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-02 00:00:00 echo $weekPeriod->getEndDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-08 23:59:59 // Example retrieving first and last days of week with preserving time $date = new \DateTime('02-03-2015 14:30:00'); $weekPeriod = new WeekPeriod($date, $preserveTime = true); echo $weekPeriod->getStartDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-02 14:30:00 echo $weekPeriod->getEndDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-08 14:30:00 // Example getting start and end of the day $date = new \DateTime('02-03-2015'); $weekPeriod = new DayPeriod($date); echo $weekPeriod->getStartDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-02 00:00:00 echo $weekPeriod->getEndDate()->format("Y-m-d H:i:s") . PHP_EOL; // 2015-03-08 23:59:59 // Example of creating custom date period $startDate = new \DateTime('06-06-2000'); $endDate = new \DateTime('06-07-2001'); $datePeriod = new DatePeriod($startDate, $endDate);
You can pass DatePeriodInterface object to function or method instead of passing start and edn dates separately. For example function getRevenueReport(DatePeriodInterface $period) instead of function getRevenueReport($startDate, $endDate)
smilesrg/dateperiod 适用场景与选型建议
smilesrg/dateperiod 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 03 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「date」 「period」 「interval」 「range」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 smilesrg/dateperiod 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 smilesrg/dateperiod 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 smilesrg/dateperiod 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Library to handel intervals
Provides additional functionality to the DateInterval class
Tools to convert between .NET and PHP date formats
Period handling
Adds the EDTF data type to Wikibase
Convert durations into human-readable timestamps.
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 26
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-26