jeskew/datetimeinterface-shim

PHP >=5.5的DateTimeInterface在PHP >=5.3应用程序中的适配器

0.1.0 2015-11-15 20:33 UTC

This package is auto-updated.

Last update: 2024-08-29 03:37:35 UTC


README

Build Status GitHub license Packagist

卡在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