(PHP 8 >= 8.4.0)
DateTime::createFromTimestamp — Creates an instance from a Unix timestamp
Creates an instance from a Unix timestamp.
timestampReturns a new DateTime instance.
If the timestamp is outside the range [PHP_INT_MIN, PHP_INT_MAX],
a DateRangeError is thrown.
Exemple #1 DateTime::createFromTimestamp() example
<?php
$date = DateTime::createFromTimestamp(123.456789);
echo $date->format('Y-m-d H:i:s.u');
?>L'exemple ci-dessus va afficher :
1970-01-01 00:02:03.456789