如何将本地时间转换为UTC格式?
我有约会
$timeZome = timezone_open('Europe/Kiev');
$date = new DateTime();
$date->setTimezone($timeZome);
$date->setDate(2011, 06,25);
$date->setTime(11,35,00);
如何这样呈现?
20110625T040000Z
I have date
$timeZome = timezone_open('Europe/Kiev');
$date = new DateTime();
$date->setTimezone($timeZome);
$date->setDate(2011, 06,25);
$date->setTime(11,35,00);
How to present like that?
20110625T040000Z
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将执行您想要的操作:
非常简单:设置日期/时间/区域,修改时区和打印格式。
This will do what you want:
It's pretty straightforward: set the date/time/zone, modify the timezone and format for printing.
我想,您可能只需要在日期对象上调用 format 即可。
更新:
您可能需要研究使用日期类中的现有常量,或者如果您的需求与日期提供的不同,只需扩展它并添加一个方法来解析并返回您想要的日期格式。
You may just need to call format on your date object, I think.
UPDATE:
You may want to look into either using the existing constants in the date class, or if your needs differ from what date offers, simply extend it and add a method that parses and returns your date formatted as you want it to.