如何转换此时间格式?

时间:2011-07-17 18:27:33

标签: php mysql time

2011-07-13 02:38:31

^ MySQL格式。

我想使用PHP将其转换为另一种格式,例如,2011年7月13日凌晨2:38。

3 个答案:

答案 0 :(得分:5)

<?php
$time_from_db = '2011-07-13 02:38:31';

echo date('F j, Y g:i a', strtotime($time_from_db));
?>

答案 1 :(得分:4)

echo date("F j, Y g:i a", strtotime("2011-07-13 02:38:31"));

demo

答案 2 :(得分:1)

$yourdatevar = date("F j, Y, g:i a", strtotime($yourdatevar)); // March 10, 2001, 5:16 pm

从右边起:http://php.net/manual/en/function.date.php