IntlCalendar::createInstance

(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a1)

IntlCalendar::createInstance创建一个新的 IntlCalendar

说明

面向对象风格

public static IntlCalendar::createInstance(IntlTimeZone|DateTimeZone|string|null $timezone = null, ?string $locale = null): ?IntlCalendar

过程式风格

intlcal_create_instance(IntlTimeZone|DateTimeZone|string|null $timezone = null, ?string $locale = null): ?IntlCalendar

给定一个时区和区域设置,此方法将创建一个 IntlCalendar 对象。此工厂方法可能返回 IntlCalendar 的子类。

创建的日历将代表它创建时的时刻,基于系统时间。所有字段都可以通过调用无参数的 IntCalendar::clear() 来清除。另请参阅 IntlGregorianCalendar::__construct()

参数

timezone

要使用的时区。

locale

要使用的区域设置或 null 以使用 默认区域设置

返回值

创建的 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"

参见

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top