IntlCalendar::setDate
(PHP 8 >= 8.3.0)
IntlCalendar::setDate — Set a date fields
说明
Sets a date fields to the given value.
参数
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
.
返回值
没有返回值。
示例
示例 #1 IntlCalendar::setDate() example
<?php
$intlCal = IntlCalendar::createInstance('UTC');
$intlCal->setDate(2012, 1, 29);
?>
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。