PHP 8.4.24 Released!

DateTime::setMicrosecond

(PHP 8 >= 8.4.0)

DateTime::setMicrosecondSets microsecond part of the time

Опис

public function DateTime::setMicrosecond(int $microsecond): static

Sets microsecond part of the time.

Like DateTimeImmutable::setMicrosecond() but works with DateTime.

Параметри

microsecond
The microsecond value to set (0 to 999999).

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

Повертає змінений об'єкт DateTime для ланцюжків методів.

Помилки/виключення

If the microsecond is outside the range [0, 999999], a DateRangeError is thrown.

Приклади

Приклад #1 DateTime::setMicrosecond() example

<?php
$date = DateTime::createFromTimestamp(123.456789);
echo $date->format('Y-m-d H:i:s.u') . PHP_EOL;
$date->setMicrosecond(987654);
echo $date->format('Y-m-d H:i:s.u') . PHP_EOL;
?>

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

1970-01-01 00:02:03.456789
1970-01-01 00:02:03.987654

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

add a note

User Contributed Notes

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