(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTime::setDate -- date_date_set — Sets the date
Object-oriented style
public DateTime::setDate(int $year, int $month, int $day): DateTime
Procedural style
date_date_set( DateTime $object, int $year, int $month, int $day ): DateTime
Resets the current date of the DateTime object to a different date.
Like DateTimeImmutable::setDate() but works with DateTime, and changes the existing object.
The procedural version takes the DateTime object as its first argument.
objectProcedural style only: A DateTime object returned by date_create(). The function modifies this object.
yearYear of the date.
monthMonth of the date.
dayDay of the date.
Returns the modified DateTime object for method chaining.
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/datetime.setdate.php