MySQL日期格式和解析
我们有两个网站使用相同的 MqSQL 数据库。一个是英语,另一个是捷克语。例如,我们使用数据库中显示为 2011-01-22
的日期。通过 PHP 调用时,格式显示为:2011 年 1 月 22 日。这对于我们的英语网站来说没问题,但我们需要捷克语版本才能在捷克语页面上显示。有什么想法如何改变日期的解析方式吗?非常感谢。
We have two websites using the same MqSQL database. One in English the other in Czech. We use dates which are shown in the database as 2011-01-22
for example. When called via PHP the format is displayed as: 22 Jan, 2011. That's fine for our English website but we need the Czech version to show for our Czech pages. Any ideas how to change how the date is parsed? Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 PHP 中使用 setlocale() 函数。试试这个:
上面的代码打印 "22 leden, 2012",就像英语日期格式一样。
You need to use setlocale() function in PHP. Try this:
The code above prints "22 leden, 2012", just like your English date format.
如果你想以不同的格式显示日期,你可以使用
DATE_FORMAT(date,format)
,如文档If you want to display the date in a different format you could use
DATE_FORMAT(date,format)
like shown in the documentation