Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Latest commit

 

History

History
42 lines (28 loc) · 1.98 KB

README.md

File metadata and controls

42 lines (28 loc) · 1.98 KB

Jiffy Universal Timestamps

Author Build Status Coverage Status Quality Score Software License Packagist Version Total Downloads

Installation

composer require litipk/php-jiffy

Usage

The PHP Jiffy library provides the UniversalTimestamp class, which allows you to record timestamps with milliseconds and microseconds precision and to convert it to other "timestamp types" whenever you need to do it.

The supported PHP versions are 5.5, 5.6, 7.0 and HHVM.

<?php

use Litipk\Jiffy\UniversalTimestamp;

$now = UniversalTimestamp::now();
$fromDateTime = UniversalTimestamp::fromDateTimeInterface(new \DateTime());
$fromMongoDate = UniversalTimestamp::fromMongoDate(new \MongoDate());

Notice: The MongoDB related methods are only available when the mongo or mongodb extensions are loaded.

Integration with Doctrine

If you want to use Jiffy's UniversalTimesamp objects in your Doctrine models, you can use our adapter layers: