如何将 2011-01-31 回显为 2011 年 1 月 31 日?

发布于 2024-10-25 09:58:15 字数 311 浏览 3 评论 0原文

我如何将 2011-01-31 回显为 2011 年 1 月 31 日? 输入(2011-01-31)来自数据库(类型:日期)。

另外,是否有任何选项可以使用月份的区域设置名称?

编辑:

$date = date_create($row['bdate']);
echo date_format($date, 'd F Y'); //31 January 2010

可能是解决方案,但 date_format 没有其他语言的选项(?)。有什么解决办法吗?喜欢 31 Ocak 2011

How I can echo 2011-01-31 as 31 January 2011?
The input (2011-01-31) comes from the database (type: date).

Also is there any option to use locale names for the month?

Edit:

$date = date_create($row['bdate']);
echo date_format($date, 'd F Y'); //31 January 2010

could be solution but date_format has no option for other languages(?). Is there any solution? Like 31 Ocak 2011

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

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

发布评论

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

评论(4

慈悲佛祖 2024-11-01 09:58:33

尝试使用 strftime()

$date = strtotime($row['bdate']);
echo strftime('%d %B %Y', $date);

Try using strftime()

$date = strtotime($row['bdate']);
echo strftime('%d %B %Y', $date);
雪花飘飘的天空 2024-11-01 09:58:32
<?php

echo date('d F Y', strtotime("2011-01-31"));

演示:http://codepad.org/WPe1xCFz

<?php

echo date('d F Y', strtotime("2011-01-31"));

Demo: http://codepad.org/WPe1xCFz

知足的幸福 2024-11-01 09:58:28

使用 strtotime2011-01-31 转换为时间戳:

echo date( 'd F Y', strtotime( $row['bdate'] ) );

Use strtotime to convert 2011-01-31 to a timestamp:

echo date( 'd F Y', strtotime( $row['bdate'] ) );
向地狱狂奔 2024-11-01 09:58:23

可能是您想要的 strftime

例子:
echo strftime('%d %B %Y', strtotime($db_entry));

Probably is strftime what you seek.

Example:
echo strftime('%d %B %Y', strtotime($db_entry));

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