日期格式如“jan 2010”

发布于 2024-10-11 18:58:42 字数 86 浏览 0 评论 0原文

您好,在我的表中,我将日期保存为“2010-12-01”,但我想将上述日期转换为“2010 年 12 月”。您可以建议我如何转换吗?

提前致谢

Hi in my table i am saving the date as '2010-12-01' i,e but i want to convert the above date as 'Dec 2010'..can u please suggest me how to convert it?

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苏辞 2024-10-18 18:58:42

如果您使用 php,请执行以下操作:

echo date("M Y", strtotime("2010-12-01"));

If you are using php then do the following:

echo date("M Y", strtotime("2010-12-01"));
黎歌 2024-10-18 18:58:42

或者在 MySQL 中:

SELECT DATE_FORMAT('2011-01-12', '%M %Y')

更新为“2011 年 1 月”:

SELECT DATE_FORMAT('2011-01-12', '%b %Y')

Or in MySQL:

SELECT DATE_FORMAT('2011-01-12', '%M %Y')

Updated for "Jan 2011":

SELECT DATE_FORMAT('2011-01-12', '%b %Y')
疏忽 2024-10-18 18:58:42

请记住,如果您想对 phps 日期函数使用不同的语言,您可以使用

setlocale (LC_TIME, "da_DK");

to set it to danish (or any other language) instead of making a service function to parse this.

Remember, if you want to use a different language for phps date function, you can use

setlocale (LC_TIME, "da_DK");

to set it to danish (or any other language) instead of making a service function to parse this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文