jeskew / datetimeinterface-shim
PHP >=5.5的DateTimeInterface在PHP >=5.3应用程序中的适配器
0.1.0
2015-11-15 20:33 UTC
Requires
- php: >=5.3.0
- nesbot/carbon: ^1.21
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is auto-updated.
Last update: 2024-08-29 03:37:35 UTC
README
卡在PHP 5.3或5.4上,但想针对\DateTimeInterface
进行类型提示?安装此包并使用包含的DateTime类
<?php use DateTimeCompat\DateTime; $now = new DateTime(); $fromFormat = DateTime::fromFormat('U', (string) time());
已经有一个\DateTime
的实例?此包在内部使用nesbot/carbon
,因此它的所有便捷方法都对您可用,包括instance
DateTime::instance(new \DateTime) instanceof 'DateTimeInterface' === true