Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1.12 KB

README.md

File metadata and controls

21 lines (13 loc) · 1.12 KB

doctrine-dbal-datetimeutc

Build Status

A Doctine DBAL Custom Mapping Type allowing the use of PHP DateTime objects automatically set to the UTC timezone.

Databases suck at timezones. The best way to deal with this is to store the date and time in UTC and seperately store the timezone that should be used for display purposes. By default, PHP will create DateTime objects set the server's timezone. This custom type overrides this to set the timezone to UTC, allowing you to later convert to the proper timezone for display.

Install via composer:

composer require austinsmorris/doctrine-dbal-datetimeutc:~1.0

Add the custom type before instantiating your entity manager:

use Doctrine\DBAL\Types\Type;
Type::addType('datetimeutc', 'ASM\Doctrine\DBAL\Types\DateTimeUTCType');

Enjoy!