(PHP 8 >= 8.4.0)
DateTimeImmutable::createFromTimestamp — Creates an instance from a Unix timestamp
Creates an instance from a Unix timestamp.
timestampReturns a new DateTimeImmutable instance.
If the timestamp is outside the range [PHP_INT_MIN, PHP_INT_MAX],
a DateRangeError is thrown.
示例 #1 DateTimeImmutable::createFromTimestamp() example
<?php
$date = DateTimeImmutable::createFromTimestamp(123.456789);
echo $date->format('Y-m-d H:i:s.u');
?>以上示例会输出:
1970-01-01 00:02:03.456789