timezone_name_get()函數(shù)返回時(shí)區(qū)名稱。
timezone_name_get()函數(shù)是DateTimeZone::getName()的別名。 它接受DateTimeZone對(duì)象作為參數(shù)并返回其時(shí)區(qū)。
timezone_name_get($object)
序號(hào) | 參數(shù)及說明 |
---|---|
1 | object (必需) 這是一個(gè)DateTimeZone對(duì)象。 |
PHP timezone_name_get()函數(shù)返回一個(gè)字符串值,該字符串值指定給定對(duì)象的時(shí)區(qū)。
此函數(shù)最初是在PHP版本5.2.0中引入的,并且可以在所有更高版本中使用。
以下示例演示timezone_name_get()函數(shù)返回時(shí)區(qū)的名稱的用法-
<?php //設(shè)置時(shí)區(qū) $tz = new DateTimeZone('Asia/Chongqing'); $res = timezone_name_get($tz); print("時(shí)區(qū): ".$res); ?>測(cè)試看看?/?
輸出結(jié)果
時(shí)區(qū): Asia/Chongqing
使用兩個(gè)種方法返回時(shí)區(qū)的名稱:
<?php $dateSrc = '2007-04-19 12:50 GMT'; $dateTime = date_create( $dateSrc); $DateTimeZone = timezone_open ( 'Asia/Shanghai' ); date_timezone_set( $dateTime, $DateTimeZone ); $NewDateTimeZone = date_timezone_get($dateTime); echo '新時(shí)區(qū)是 '. timezone_name_get($NewDateTimeZone); echo "\n"; #使用第二種方法 $dateTime = new DateTime($dateSrc); $DateTimeZone = timezone_open ( 'Asia/Shanghai' ); $dateTime->setTimezone( $DateTimeZone ); echo '新時(shí)區(qū)是 '. $DateTimeZone->getName (); ?>測(cè)試看看?/?
輸出結(jié)果:
新時(shí)區(qū)是 Asia/Shanghai 新時(shí)區(qū)是 Asia/Shanghai