我是新手,因此不胜感激。我有一个数据库表,其中有一列存储事件时间。我需要将该列的格式更改为上午/下午的时间。我认为 MySQL 说它与 %r 一起使用。我不知道如何通过 phpMyAdmin 做到这一点。请帮忙!!!
问问题
72 次
1 回答
0
$formatted_date = date("l dS \of F Y h:i:s A", $datevariable_to_beformatted); echo $formatted_date //A is the modifier for AM/PM, if u want lowercase make it a Saturday 26th of January 2006 10:41:22 PM $formatted_date = gmdate("l dS \of F Y h:i:s A", $datevariable_to_beformatted); echo $formatted_date //A is the modifier for AM/PM, if u want lowercase make it a Saturday 26th of January 2006 10:41:27 PM SELECT date_format(datecolumn, '%W, %M %e, %Y @ %h:%i %p') as formatted_date from date_table //%p is the modifier for AM/PM 'Saturday, January 26, 2013 @ 10:56 PM'
注意:在 mysql 中,日期列将存储为时间戳或日期时间。
于 2013-01-27T05:16:35.400 回答