我将日期存储到mysql数据库中。它显示如下:
2011-03-17 17:49:49
但我希望它显示为这样:
Thur 17 March 2011 5:49 PM
答案 0 :(得分:0)
在PHP中使用date()
:http://us.php.net/manual/en/function.date.php
或
在mysql格式化输出:http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html
答案 1 :(得分:0)
使用strtotime()将其转换为时间戳,然后在PHP中使用date()对其进行格式化。
答案 2 :(得分:0)
答案 3 :(得分:0)
使用以下功能
日期(“D j F,Y,g:我是”);
答案 4 :(得分:0)
答案 5 :(得分:0)
$time = '2011-03-17 17:49:49';
$date = new DateTime($time);
echo $date->format('D j F Y g:i A'); // Thu 17 March 2011 5:49 PM
请注意,在您的示例中,根据我的输出,您有Thur
而不是Thu
。 PHP没有任何本地字符来表示这一点,但你可以做...
$time = '2011-03-17 17:49:49';
$date = new DateTime($time);
echo substr($date->format('l'), 0, 4) . $date->format(' j F Y g:i A');
// Thur 17 March 2011 5:49 PM
答案 6 :(得分:0)
$given_date = '2011-03-17 17:49:49';
echo $ur_date = date('D j F Y g:i:s A',strtotime($given_date));
答案 7 :(得分:0)
最好将数据库中的日期存储为unix时间戳,然后在输出时使用这样的内容来显示它你想要的方式
<?php
// echo date ( "F j, Y, g:i a", timestamp );
// Assuming today is: March 10th, 2001, 5:16:18 pm
$today = date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm
$today = date("m.d.y"); // 03.10.01
$today = date("j, n, Y"); // 10, 3, 2001
$today = date("Ymd"); // 20010310
$today = date('h-i-s, j-m-y, it is w Day z '); // 05-16-17, 10-03-01, 1631 1618 6 Fripm01
$today = date('\i\t \i\s \t\h\e jS \d\a\y.'); // It is the 10th day.
$today = date("D M j G:i:s T Y"); // Sat Mar 10 15:16:08 MST 2001
$today = date('H:m:s \m \i\s\ \m\o\n\t\h'); // 17:03:17 m is month
$today = date("H:i:s"); // 17:16:17
?>