日期和时间显示错误的时间

时间:2014-07-24 08:24:06

标签: php date

我试图按照我想要的方式格式化日期和时间..问题是即使我得到正确的日期时间不正确..

如果我echo $start_date我得到的结果2014-07-16T13:20:00+02:00具有正确的时间等 当我echo $start1_date格式化后,结果为11:20 Wed 16 Jul 2014时间落后2小时..我正在使用wordpress并在后端设置了约翰内斯堡..这个日期来自及时的日历插件。我如何获得正确的展示时间?谢谢你们..

$start_date  = $instance->get( 'start' );
$start1_date = date(' g:i D d M Y' , strtotime($start_date) );

1 个答案:

答案 0 :(得分:0)