CakeFest 2024: The Official CakePHP Conference

DateTime::setDate

date_date_set

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

DateTime::setDate -- date_date_setSets the date

Açıklama

Nesne yönelimli kullanım

public DateTime::setDate(int $year, int $month, int $day): DateTime

Yordamsal kullanım

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.

Bağımsız Değişkenler

nesne

Sadece yordamsal tarz: date_create() tarafından bir DateTime nesnesi döndürülür. İşlev bu nesnede değişiklik yapar.

year

Year of the date.

month

Month of the date.

day

Day of the date.

Dönen Değerler

Yöntem zincirleme için değişmiş DateTime nesnesi döner.

Ayrıca Bakınız

add a note

User Contributed Notes

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