CakeFest 2024: The Official CakePHP Conference

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

Descrizione

Stile orientato agli oggetti

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

Stile procedurale

date_add(DateTime $object, DateInterval $interval): DateTime

Adds the specified DateInterval object to the specified DateTime object.

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

The procedural version takes the DateTime object as its first argument.

Elenco dei parametri

oggetto

Solo per lo stile procedurale: Un oggetto DateTime restituito da date_create(). La funzione modifica questo oggetto.

interval

A DateInterval object

Valori restituiti

Returns the modified DateTime object for method chaining.

Vedere anche:

add a note

User Contributed Notes

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