timezone_transitions_get()函數(shù)返回時(shí)區(qū)的所有轉(zhuǎn)換。
timezone_transitions_get()函數(shù)是DateTimeZone ::getTransitions() 的別名。它接受DateTimeZone對(duì)象作為參數(shù),并返回給定時(shí)區(qū)的轉(zhuǎn)換。
timezone_transitions_get($object, $timestamp_start, $timestamp_end)
序號(hào) | 參數(shù)及說明 |
---|---|
1 | object (必需) 這是一個(gè)DateTimeZone對(duì)象。 |
2 | timestamp_start (可選) 表示開始時(shí)間戳記的整數(shù)值。 |
3 | timestamp_end (可選) 表示結(jié)束時(shí)間戳記的整數(shù)值。 |
PHP timezone_transitions_get()函數(shù)以數(shù)組形式返回所有轉(zhuǎn)換。如果失敗,則此函數(shù)返回布爾值false。
此函數(shù)最初是在PHP版本5.2.0中引入的,并且可以在所有更高版本中使用。
以下示例演示了date_default_timezone_get函數(shù)的用法-
<?php $tz = new DateTimeZone("Indian/Mahe"); $list = timezone_transitions_get($tz); print_r($list); ?>測(cè)試看看?/?
輸出結(jié)果
Array ( [0] => Array ( [ts] => -9223372036854775808 [time] => -292277022657-01-27T08:29:52+0000 [offset] => 13308 [isdst] => [abbr] => LMT ) [1] => Array ( [ts] => -2006653308 [time] => 1906-05-31T20:18:12+0000 [offset] => 14400 [isdst] => [abbr] => +04 ) [2] => Array ( [ts] => 2147483647 [time] => 2038-01-19T03:14:07+0000 [offset] => 14400 [isdst] => [abbr] => +04 ) )
返回時(shí)區(qū)的所有轉(zhuǎn)換
<?php $timezone = new DateTimeZone("CET"); print_r(reset($timezone->getTransitions())); echo"------------------------------------------------\n"; print_r( reset( timezone_transitions_get ($timezone) ) ); ?>測(cè)試看看?/?
輸出結(jié)果:
Array ( [ts] => -1693706400 [time] => 1916-04-30T22:00:00+0000 [offset] => 7200 [isdst] => 1 [abbr] => CEST ) ------------------------------------------------ Array ( [ts] => -1693706400 [time] => 1916-04-30T22:00:00+0000 [offset] => 7200 [isdst] => 1 [abbr] => CEST )