IntlCalendar::setTimeZone

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

IntlCalendar::setTimeZone设置此日历使用的时区

描述

面向对象风格

public IntlCalendar::setTimeZone(IntlTimeZone|DateTimeZone|string|null $timezone): bool

过程式风格

intlcal_set_time_zone(IntlCalendar $calendar, IntlTimeZone|DateTimeZone|string|null $timezone): bool

为该日历定义一个新的时区。对象表示的时间将被保留,而字段值将被牺牲。

参数

calendar

一个 IntlCalendar 实例。

timezone

该日历要使用的新的时区。可以通过以下方式指定它

返回值

成功时返回 true,失败时返回 false

示例

示例 #1 IntlCalendar::setTimeZone()

<?php
ini_set
('date.timezone', 'Europe/Lisbon');
ini_set('intl.default_locale', 'es_ES');

$cal = new IntlGregorianCalendar(2013, 5 /* May */, 1, 12, 0, 0);

echo
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
echo
"(instant {$cal->getTime()})\n";

$cal->setTimeZone(IntlTimeZone::getGMT());
echo
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
echo
"(instant {$cal->getTime()})\n";

$cal->setTimeZone('GMT+03:33');
echo
IntlDateFormatter::formatObject($cal, IntlDateFormatter::FULL), "\n";
echo
"(instant {$cal->getTime()})\n";

上面的示例将输出

sábado, 1 de junio de 2013 12:00:00 Hora de verano de Europa occidental
(instant 1370084400000)
sábado, 1 de junio de 2013 11:00:00 GMT
(instant 1370084400000)
sábado, 1 de junio de 2013 14:33:00 GMT+03:33
(instant 1370084400000)

添加备注

用户贡献的备注

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