(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a1)
IntlCalendar::createInstance — 创建一个新的IntlCalendar
面向对象风格
$timezone
= null
, ?string $locale
= null
): ?IntlCalendar过程式风格
$timezone
= null
, ?string $locale
= null
): ?IntlCalendar给定一个时区和区域设置,此方法创建一个IntlCalendar对象。此工厂方法可能返回IntlCalendar的子类。
创建的日历将表示其创建时的时刻,基于系统时间。可以通过调用IntCalendar::clear()(无参数)来清除所有字段。另见IntlGregorianCalendar::__construct()。
timezone
要使用的时区。
null
,在这种情况下,将使用默认时区,该时区在ini设置date.timezone中指定,或通过函数date_default_timezone_set()指定,并由date_default_timezone_get()返回。
一个IntlTimeZone,将直接使用。
一个DateTimeZone。将提取其标识符并创建一个ICU时区对象;时区将由ICU的数据库支持,而不是PHP的数据库。
一个string,它应该是有效的ICU时区标识符。参见IntlTimeZone::createTimeZoneIDEnumeration()。也接受诸如"GMT+08:30"
之类的原始偏移量。
locale
创建的IntlCalendar实例,或失败时返回null
。
示例 #1 IntlCalendar::createInstance()
<?php
ini_set('intl.default_locale', 'es_ES');
ini_set('date.timezone', 'Europe/Madrid');
$cal = IntlCalendar::createInstance();
echo "No arguments\n";
var_dump(get_class($cal),
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL));
echo "\n";
echo "Explicit timezone\n";
$cal = IntlCalendar::createInstance(IntlTimeZone::getGMT());
var_dump(get_class($cal),
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL));
echo "\n";
echo "Explicit locale (with calendar)\n";
$cal = IntlCalendar::createInstance(NULL, 'es_ES@calendar=persian');
var_dump(get_class($cal),
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL));
以上示例将输出
No arguments string(21) "IntlGregorianCalendar" string(68) "martes 18 de junio de 2013 14:11:02 Hora de verano de Europa Central" Explicit timezone string(21) "IntlGregorianCalendar" string(45) "martes 18 de junio de 2013 12:11:02 GMT+00:00" Explicit locale (with calendar) string(12) "IntlCalendar" string(70) "martes 28 de Khordad de 1392 14:11:02 Hora de verano de Europa Central"