|
update : 2015.11.03
php.shukuma.com검색:
|
IntlCalendar::getTimeZone(PHP 5.5.0, PECL >= 3.0.0a1) IntlCalendar::getTimeZone — Get the objectʼs timezone 인수
반환값An IntlTimeZone object corresponding to the one used internally in this object. 예제
Example #1 IntlCalendar::getTimeZone()
<?php위 예제의 출력:
IntlTimeZone Object
(
[valid] => 1
[id] => Europe/Lisbon
[rawOffset] => 0
[currentOffset] => 3600000
)
IntlTimeZone Object
(
[valid] => 1
[id] => UTC
[rawOffset] => 0
[currentOffset] => 0
)
IntlTimeZone Object
(
[valid] => 1
[id] => GMT+03:33
[rawOffset] => 12780000
[currentOffset] => 12780000
)
참고
|