(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTime::setTime -- date_time_set — Sets the time
Об'єктно-орієнтований стиль
Процедурний стиль
$object
,$hour
,$minute
,$second
= 0,$microsecond
= 0Resets the current time of the DateTime object to a different time.
Like DateTimeImmutable::setTime() but works with DateTime.
The procedural version takes the DateTime object as its first argument.
object
Тільки процедурний стиль: об'єкт DateTime повертається функцією date_create(). Вона змінює цей об'єкт.
hour
Hour of the time.
minute
Minute of the time.
second
Second of the time.
microsecond
Microsecond of the time.
Повертає змінений об'єкт DateTime для ланцюжків методів.
Версія | Опис |
---|---|
8.1.0 | The behaviour with double existing hours (during the fall-back DST transition) changed. Previously PHP would pick the second occurrence (after the DST transition), instead of the first occurrence (before DST transition). |
7.1.0 | The microsecond parameter was added. |