Dutch PHP Conference 2025 - Call For Papers

DateTime::setISODate

date_isodate_set

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

DateTime::setISODate -- date_isodate_setSets the ISO date

Опис

Об'єктно-орієнтований стиль

public DateTime::setISODate(int $year, int $week, int $dayOfWeek = 1): DateTime

Процедурний стиль

date_isodate_set(
    DateTime $object,
    int $year,
    int $week,
    int $dayOfWeek = 1
): DateTime

Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.

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

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

Параметри

object

Тільки процедурний стиль: об'єкт DateTime повертається функцією date_create(). Вона змінює цей об'єкт.

year

Year of the date.

week

Week of the date.

dayOfWeek

Offset from the first day of the week.

Значення, що повертаються

Повертає змінений об'єкт DateTime для ланцюжків методів.

Прогляньте також

add a note

User Contributed Notes

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