在php中更改时间格式



请帮忙将第一个日期格式转换为第二个日期格式。

这只是一个例子:

2016-08-18 22:09:53

2016 - 08 - 18 - t09:20:00 +喂饲

我使用

$the_date = strtotime("016-08-18 22:09:53");
echo(date_default_timezone_get() . "<br />");
echo(date("Y-d-mTG:i:sz",$the_date) . "<br />");

亚洲/加尔各答

2016 - 18 - 08 - ist22:09:53230

但是这个时间格式还是不像2016-08-18T09:20:00+08:00

date_default_timezone_set('UTC');
$the_date = strtotime("016-08-18 22:09:53");
echo date(DATE_ATOM, $the_date);

使用此格式"Y-m-d TH:我:sP"

相关内容

  • 没有找到相关文章

最新更新