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

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

最佳答案

只需使用str_replace函数

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


str_replace

关于php - 更改MySQL date_format中的月份名称?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12735764/

10-10 02:53