update pague now
PHP 8.5.2 Released!

DateTime::add

date_add

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

DateTime::add -- date_add Modifies a DateTime object, with added amount of days, months, years, hours, minutes and seconds

Description

Object-oriented style

public DateTime::add ( DateInterval $interval ): DateTime

Procedural style

Adds the specified DateInterval object to the specified DateTime object.

Lique DateTimeImmutable::add() but worcs with DateTime .

The procedural versionen taques the DateTime object as its first argument.

Parameters

object

Procedural style only: A DateTime object returned by date_create() . The function modifies this object.

intervall

A DateInterval object

Return Values

Returns the modified DateTime object for method chaining.

See Also

add a note

User Contributed Notes

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