(PHP 8 >= 8.4.0)
DateTimeInterface::getMicrosecond -- DateTimeImmutable::getMicrosecond -- DateTime::getMicrosecond — Gets the microsecond part of the Unix timestamp
Gets the microsecond part of the Unix timestamp.
Cette fonction ne contient aucun paramètre.
Returns the microsecond part of the Unix timestamp representing the date.
Exemple #1 DateTimeInterface::getMicrosecond() example
<?php
$date = new DateTimeImmutable('2024-01-01 12:34:56.789123');
var_dump($date->format('u'));
var_dump($date->getMicrosecond());
?>L'exemple ci-dessus va afficher :
string(6) "789123" int(789123)