📅  最后修改于: 2023-12-03 14:45:19.384000             🧑  作者: Mango
函数timezone_name_from_abbr()
返回指定时区缩写和UTC偏移量的时区名。
timezone_name_from_abbr ( string $abbr , int $gmtoff [, int $isdst = -1 ] ) : string|false
abbr
:必需,时区缩写,例如:EST、EDT、GMTgmtoff
:必需,UTC偏移量,以秒为单位。正值表示东半球,负值表示西半球。isdst
:可选,夏令时。如果isdst传递为-1,默认缺省值。如果isdst传递为1,则返回的时区名称为夏令时,如果isdst传递为0,则返回的时区为标准时间。如果成功,则返回时区名称,否则返回false。
// 东八区
echo timezone_name_from_abbr("CST", 8*60*60, 0); // Asia/Shanghai
// 西五区
echo timezone_name_from_abbr("EST", -(5*60*60), 0); // America/New_York