DateTimeImmutable::createFromTimestamp

Creates an instance from a Unix timestamp

Description

public static static DateTimeImmutable::createFromTimestamp(intfloat $timestamp)

Creates an instance from a Unix timestamp.

Parameters

timestamp
Unix timestamp representing the date. A float value is also accepted which allows for microsecond precision.

Return Values

Returns a new DateTimeImmutable instance.

Errors/Exceptions

If the timestamp is outside the range [PHP_INT_MIN, PHP_INT_MAX], a DateRangeError is thrown.

Examples

Example #1 DateTimeImmutable::createFromTimestamp example

<?php
$date = DateTimeImmutable::createFromTimestamp(123.456789);
echo $date->format('Y-m-d H:i:s.u');
?>

The above example will output:

1970-01-01 00:02:03.456789