DateTime::setTime
date_time_set
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTime::setTime -- date_time_set — Sets the time
Description
Object-oriented style
Procedural style
date_time_set(
DateTime
int
int
int
int
): DateTime
DateTime
$object,int
$hour,int
$minute,int
$second = 0,int
$microsecond = 0): DateTime
Resets 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.
Parameters
objectProcedural style only: A DateTime object returned by date_create(). The function modifies this object.
hourHour of the time.
minuteMinute of the time.
secondSecond of the time.
microsecondMicrosecond of the time.
Return Values
Returns the modified DateTime object for method chaining.
Changelog
| Version | Description |
|---|---|
| 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. |
See Also
- DateTimeImmutable::setTime() - Sets the time
↑ and ↓ to navigate • Enter to select • Esc to close • / to open