IntlCalendar::setTimeZone

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

IntlCalendar::setTimeZoneSet the timezone used by this calendar

说锟斤拷

锟斤拷锟斤拷锟斤拷锟斤拷锟�

public IntlCalendar::setTimeZone ( mixed $timeZone ) : bool

锟斤拷锟教伙拷锟斤拷锟�

intlcal_set_time_zone ( IntlCalendar $cal , mixed $timeZone ) : bool

Defines a new timezone for this calendar. The time represented by the object is preserved to the detriment of the field values.

锟斤拷锟斤拷

cal

The IntlCalendar resource.

timeZone

The new timezone to be used by this calendar. It can be specified in the following ways:

锟斤拷锟斤拷值

Returns TRUE on success and FALSE on failure.

锟斤拷锟斤拷

Example #1 IntlCalendar::setTimeZone()

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

$cal = new IntlGregorianCalendar(2013/* May */11200);

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

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

$cal->setTimeZone('GMT+03:33');
echo 
IntlDateFormatter::formatObject($calIntlDateFormatter::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)