为什么 timezone_name_from_abbr 返回空字符串?
为什么以下返回空字符串:
$offset = -10; //UM10
echo timezone_name_from_abbr('', $offset * 3600, true); //empty string
我使用的是 PHP 5.3.0。
感谢大家的帮助。
Why does the following return an empty string:
$offset = -10; //UM10
echo timezone_name_from_abbr('', $offset * 3600, true); //empty string
I am using PHP 5.3.0.
Thanks all for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为您将夏令时选项设置为 true:
Because you set the daylight savings time option to true: