<?php
$date = new DateTime(null, new DateTimeZone('Europe/London'));
$tz = $date->getTimezone();
echo $tz->getName();
?>
輸出:
Europe/London

<?php
$date = date_create(null, timezone_open('Europe/London'));
$tz = date_timezone_get($date);
echo timezone_name_get($tz);
?>

輸出:
Europe/London

文章標籤
全站熱搜
創作者介紹
創作者 stockwfj3 的頭像
stockwfj3

程式設計@筆記

stockwfj3 發表在 痞客邦 留言(0) 人氣(16)