0

我可以让日期和月份显示正常,但我的问题在于时间。在我给出的 XML 文件中,它被设置为:

<Start>2012-11-11T01:00:00Z</Start>
<End>2012-11-11T02:00:00Z</End>

但最终的风格应该是下午 2 点到 3 点,我的时区是新西兰

4

1 回答 1

0
$start = "2012-11-11T01:00:00Z";
$end = "2012-11-11T02:00:00Z";
echo date("Ga", strtotime($start)) . "\n";
echo date("Ga", strtotime($end));

输出 :

1am

2am

参考文档: http: //php.net/manual/en/function.date.php

于 2012-11-03T23:03:07.880 回答