hossein142001/intldate
Composer 安装命令:
composer require hossein142001/intldate
包简介
A small php library for date converting between multiple calendar
关键字:
README 文档
README
PHP Library for Converting Date to Multiple Calendars
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist hossein142001/intldate "*"
or add
"hossein142001/intldate": "*"
to the require section of your composer.json file.
Also easily you can Download and use it.
Usage
Once the library is installed, simply use it in your php file:
use hossein142001\intldate\IntlDateTrait;
and use it on your desired class:
<?php namespace foo\bar; use hossein142001\intldate\IntlDateTrait; class Bar { use IntlDateTrait; // Some codes are here! echo $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toPersian('en')->asDateTime(); }
Anathomy
IntlDateTrait has a simple logic for naming methods: "A date starts from origin and ends to final. So all methods (setters and getters) that are related to incoming date are named by setOriginXXXX and getOriginXXXX (which XXXX shows a feature of time, like timezone or locale) and all methods that are corresponded to outgoing date are regarded as setFinalXXXX and getFinalXXXX. A list of available methods can be find in bottom of this document.
Conversion
At first I must note that incoming date must be an array in this form:
[
year, // 2016
month, // 2
day, // 23
hour, // 12
minute, // 23
second // 4
]
Currently, the library CAN'T parse a string as time (See ToDo section), so before converting a date, you MUST parse it on a acceptable array (It can be done with preg_match or each tools that you know). Now you can easily use
IntlDateTrait::from($datetimeArray, $locale, $calendar) for importing an incoming date and IntlDateTrait::to($locale, $calendar) for converting it to another system. We disccuesed about $datetimeArray in the first of this section, it's our date for converting on a accepted format. $locale is the regional information of a language. For example for The English it's en, for Farsi it's fa, for Spanish it's es and so on. You can find a complete list of them at this link. And finally calendar is your desired date system. This library use the Intl* family of php and so you can use all supported calendar in ICU project. Now this calendars are supported:
- persian
- gregorian
- japanese
- buddhist
- chinese
- indian
- islamic
- hebrew
- coptic
- ethiopic
It's better to use their handler in code instead of using direct name. These handlers are:
// Use them in `self::$CAL_CALENDAR, for example `$calendar = self::$CAL_HEBREW`. $CAL_PERSIAN $CAL_JAPANESE $CAL_BUDDHIST $CAL_CHINESE $CAL_INDIAN $CAL_ISLAMIC $CAL_HEBREW $CAL_COPTIC $CAL_ETHIOPIC $CAL_GREGORIAN
ShortHands
There are some shorthands for converting dates in a painless way (Yeah! With all of my proud, I'm a Lazy man :D). This shorthands are formatted as fromYyyy() for incoming date function and toZzzz() for outgoing date function such that, Yyyy and Zzzz are the name of calendars. For incoming function, the signature is fromYyyy($datetimeArray, $locale = 'en_US', $timezone = 'UTC) and for outgoing is toZzzz($locale = 'fa', $timezone = 'UTC'). Use $locale in incoming function if you have non-latin digits and use it on outgoing function, if you wanna show the converted date by latin digits (Based on region of calendar, $locales are defined, for example the default locate of Persian calendar for outgoing function is fa). Also with changing $timezone in both fromYyyy and ToZzzz functions, you can convert a datetime from one to another. Shorthands are listed in table.
| Incoming | Outgoing |
|---|---|
| fromPersian | toPersian |
| fromJapanese | toJapanese |
| fromBuddhist | toBuddhist |
| fromChinese | toChinese |
| fromIndian | toIndian |
| fromIslamic | toIslamic |
| fromHebrew | toHebrew |
| fromCoptic | toCoptic |
| fromEthiopic | toEthiopic |
| fromGregorian | toGregorian |
Showing Date
There are two functions for showing converted dates. The first is asDateTime and the last one is asTimestamp.
Signature of asDateTime is asDateTime($pattern = 'yyyy/MM/dd, HH:mm:ss'). This function accepts an ICU-acceptable format. You can find more info from this link. Also it's good idea for implementing a function that parse traditional php date-acceptable format (See ToDo section).
asTimestamp function return the unix epoch, positive integer for time after that and negative integer for before that.
Examples
There are some examples for using IntlDateTrait. I think they are necessary and sufficent.
$this->fromTimestamp(1504770825)->toPersian('en')->asDateTime(); // '1396/06/16, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toPersian('en')->asDateTime(); // '1396/06/16, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toPersian()->asDateTime(); // '۱۳۹۶/۰۶/۱۶, ۰۷:۵۳:۴۵' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toJapanese()->asDateTime(); // '0029/09/07, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toIslamic()->asDateTime(); // '١٤٣٨/١٢/١٧, ٠٧:٥٣:٤٥' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toBuddhist()->asDateTime(); // '2560/09/07, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toChinese()->asDateTime(); // '0034/07/17, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toIndian()->asDateTime(); // '1939/06/16, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toHebrew()->asDateTime(); // 'תשע״ז/י״ב/ט״ז, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toCoptic()->asDateTime(); // '1733/13/02, 07:53:45' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->toEthiopic()->asDateTime(); // '2009/13/02, 07:53:45' $this->fromPersian([1396, 6, 16, 12, 23, 45])->toIslamic()->asDateTime(); // '١٤٣٨/١٢/١٧, ٠٧:٥٣:٤٥' $this->fromPersian([1396, 6, 16, 12, 23, 45])->toGregorian()->asDateTime(); // '2017/09/07, 07:53:45' $this->fromPersian([1396, 6, 16, 12, 23, 45])->toGregorian()->setFinalTimeZone('Asia/Tehran')->asDateTime(); // '2017/09/07, 12:23:45' $this->fromPersian([1396, 6, 16, 12, 23, 45])->toGregorian()->setFinalTimeZone('Asia/Tehran')->asDateTime('yyyy'); // '2017' $this->fromGregorian([2017, 9, 7, 12, 23, 45])->asTimestamp(); // '1504770825' $this->fromPersian([1396, 6, 16, 12, 23, 45])->asTimestamp(); // '1504770825'
IntlDateTrait API
There are some methods that help to control more on converting process. I just list them in this section. I think thier name complain their usages, If it's not, please write document for them :D.
| Setters | Gettes |
|---|---|
setOriginDate($datetimeArray) |
getFinalDate() |
setFromLocale($locale) |
getFromLocale() |
setFromCalendar($calendar) |
getFromCalendar() |
setToLocale($locale) |
getToLocale() |
setToCalendar($calendar) |
getToCalendar() |
getFromLocaleAndCalendar() |
getToLocaleAndCalendar() |
setOriginTimeZone($timezone) |
getOriginTimeZone() |
setFinalTimeZone($timezone) |
getFinalTimeZone() |
setOriginCalendar($locale) |
getOriginCalendar() |
setFinalCalendar($locale) |
getFinalCalendar() |
setFinalDateType($datetype) |
getFinalDateType() |
setFinalTimeType($timetype) |
getFinalTimeType() |
setFinalCalendarType($calendarType) |
getFinalCalendarType() |
setFinalPattern($pattern) |
getFinalPattern() |
setIntlDateFormatter($locale = "en_US", $datetype = IntlDateFormatter::FULL, $timetype = IntlDateFormatter::FULL, $timezone = 'UTC', $calendar = IntlDateFormatter::GREGORIAN, $pattern = 'yyyy/MM/dd HH:mm:ss') |
getIntlDateFormatter() |
setIntlCalendar($timezone = 'Asia/Tehran', $locale = 'fa_IR@calendar=persian') |
getIntlCalendar() |
ToDo
- Implement
parsePattern($pattern)method.
/** * Implement a function to parse both ICU patterns and php date * function patterns and return a pattern that is compatible on * ICU format. The php pattern must start with php keyword, for * example `php:Y-F-d, H:i:s` is a php pattern. */
-
ImplementguessDateTime($timestring)method. -
Write tests!
Contribute
Just fork this repository, do your modification or addition and send a pull request!
hossein142001/intldate 适用场景与选型建议
hossein142001/intldate 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 52 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 11 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「date」 「extension」 「intl」 「japanese」 「Chinese」 「persian」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 hossein142001/intldate 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hossein142001/intldate 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 hossein142001/intldate 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Tools to convert between .NET and PHP date formats
A custom URL rule class for Yii 2 which allows to create translated URL rules
Easy to use internationalization functions for Laravel
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
Provides a customizable wrapper around Intl formatters to use it inside Laravel application. And also allows defining your own formats.
TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination
统计信息
- 总下载量: 52
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-02