作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想获取美国/东部时区的当前时间。我将如何实现这一目标。
我尝试了以下代码,但它显示了我的系统时间。
<?php
date_default_timezone_set('US/Eastern');
$currenttime = date('h:i:s:u');
list($hrs,$mins,$secs,$msecs) = split(':',$currenttime);
//print "&time2=".$secs."&time1=".$mins."&time0=".$hrs;
?>
最佳答案
<?php
echo date_default_timezone_get();
$currenttime = date('h:i:s:u');
list($hrs,$mins,$secs,$msecs) = split(':',$currenttime);
echo " => $hrs:$mins:$secs\n";
date_default_timezone_set('US/Eastern');
echo date_default_timezone_get();
$currenttime = date('h:i:s:u');
list($hrs,$mins,$secs,$msecs) = split(':',$currenttime);
echo " => $hrs:$mins:$secs\n";
date_default_timezone_set('America/New_York');
echo date_default_timezone_get();
$currenttime = date('h:i:s:u');
list($hrs,$mins,$secs,$msecs) = split(':',$currenttime);
echo " => $hrs:$mins:$secs\n";
?>
Europe/Berlin => 01:42:42
US/Eastern => 07:45:18
America/New_York => 07:45:18
关于php - PHP获取美国/东部时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4456395/
我从文本文件中读取时间戳。这些时间戳采用 UTC-4 格式。我需要将它们转换为美国/东方。 import datetime datetime_utc4 = datetime.datetime.strp
我需要知道如何将 GMT 时区格式的日期时间转换为其他格式,例如 C#、asp.net 2.0 和 dot net framework 2.0 中的东部、太平洋、山区和印度时区格式。 最佳答案 不幸的
我是一名优秀的程序员,十分优秀!