Logo

Programming-Idioms

History of Idiom 98 > diff from v16 to v17

Edit summary for version 17 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 16

2018-06-12, 17:48:40

Version 17

2018-08-31, 13:13:00

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Code
$d = DateTime::createFromFormat('U', $ts);
Doc URL
https://secure.php.net/manual/en/datetime.createfromformat.php
Demo URL
https://3v4l.org/miIdh