PHP 8.4.24 Released!

DateTimeInterface::getMicrosecond

DateTimeImmutable::getMicrosecond

DateTime::getMicrosecond

(PHP 8 >= 8.4.0)

DateTimeInterface::getMicrosecond -- DateTimeImmutable::getMicrosecond -- DateTime::getMicrosecondGets the microsecond part of the Unix timestamp

Опис

public function DateTimeInterface::getMicrosecond(): int
public function DateTimeImmutable::getMicrosecond(): int
public function DateTime::getMicrosecond(): int

Gets the microsecond part of the Unix timestamp.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the microsecond part of the Unix timestamp representing the date.

Приклади

Приклад #1 DateTimeInterface::getMicrosecond() example

<?php
$date = new DateTimeImmutable('2024-01-01 12:34:56.789123');
var_dump($date->format('u'));
var_dump($date->getMicrosecond());
?>

Поданий вище приклад виведе:

string(6) "789123"
int(789123)

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top