timezone_name_from_abbr()函数通过缩写返回时区名称。
timezone_name_from_abbr(abbr, gmtOffset, is_dst)
abbr- 时区缩写。
gmtoffset- 与GMT的偏移量(以秒为单位)。
is_dst- 夏令时指示器。
timezone_name_from_abbr()函数通过缩写返回时区名称。
以下是一个例子-
<?php echo timezone_name_from_abbr("CET") . "<br />"; ?>
输出结果
Europe/Berlin
让我们看另一个例子-
<?php echo timezone_name_from_abbr("EST") . "<br>"; ?>
输出结果
America/New_York