DateTimeInterface::getMicrosecond

DateTimeImmutable::getMicrosecond

DateTime::getMicrosecond

(PHP 8 >= 8.4.0)

DateTimeInterface::getMicrosecond -- DateTimeImmutable::getMicrosecond -- DateTime::getMicrosecondObtiene la parte de microsegundos de la marca de tiempo Unix

Descripción

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

Obtiene la parte de microsegundos de la marca de tiempo Unix.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve la parte de microsegundos de la marca de tiempo Unix que representa la fecha.

Ejemplos

Ejemplo #1 Ejemplo de DateTimeInterface::getMicrosecond()

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

El ejemplo anterior mostrará:

string(6) "789123"
int(789123)

Ver también

add a note

User Contributed Notes

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