PHP 8.4.22 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

Descrição

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

Gets the microsecond part of the Unix timestamp.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

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

Exemplos

Exemplo #1 DateTimeInterface::getMicrosecond() example

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

O exemplo acima produzirá:

string(6) "789123"
int(789123)

Veja Também

adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top