php8.5
Home/ Manual/ intl / intlcalendar/ IntlCalendar::setDate

IntlCalendar::setDate

PHP function Edit on GitHub ✎

(PHP 8 >= 8.3.0)

Set a date fields

Description

IntlCalendar::setDate(int $year, int $month, int $dayOfMonth): void

Sets a date fields to the given value.

Parameters

year

The new value for IntlCalendar::FIELD_YEAR.

month

The new value for IntlCalendar::FIELD_MONTH. The month sequence is zero-based, i.e., January is represented by 0, February by 1, …, December is 11 and Undecember (if the calendar has it) is 12.

dayOfMonth

The new value for IntlCalendar::FIELD_DAY_OF_MONTH.

Return Values

Void

Examples

IntlCalendar::setDate() example

php
<?php
$intlCal = IntlCalendar::createInstance('UTC');

$intlCal->setDate(2012, 1, 29);
?>

Source: reference/intl/intlcalendar/setdate.xml · from the official PHP manual (php/doc-en)