在MySQL date_format中更改月份名称?

时间:2012-10-04 20:54:57

标签: php mysql

在我进行SQL查询后,如何将月份名称从October(英语)更改为Oktober(丹麦语)。

查询:
SELECT id, name, date_format(timestamp, '%M %e, %Y %l:%i %p') real_timestamp FROM comments WHERE active='yes'

1 个答案:

答案 0 :(得分:1)

只需使用str_replace函数

即可
$result = str_replace("October", "Oktober", $result);

请参阅str_replace