如何在PHP中将英语日期格式转换为德语日期格式

发布于 2024-12-18 16:29:47 字数 379 浏览 1 评论 0原文

您好,我有这样的日期格式

(英语格式)

 15. July 2011

,我想将其转换为德语格式,例如

15. Juli 2011

如何将日期格式从一种语言转换为其他语言格式?

我的代码是

 $date = '15. July 2011';
 $newLocale = setlocale(LC_TIME, 'de_DE');
 $date = strftime('%d. %B %Y',$date);

但这并没有转换我得到的是 July 而不是 Juli

Hi I have a date format like this

(in English format)

 15. July 2011

And I want to convert it in German format like this

15. Juli 2011

How to convert date format from one laguage to other language format?

My Code is

 $date = '15. July 2011';
 $newLocale = setlocale(LC_TIME, 'de_DE');
 $date = strftime('%d. %B %Y',$date);

But this is not converting I am getting July rather than Juli

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

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

发布评论

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

评论(2

夏九 2024-12-25 16:29:47

您可以在调用 之前使用 setlocale 函数日期函数:

$newLocale = setlocale(LC_TIME, 'de_DE', 'de_DE.UTF-8');

编辑:引用strftime 文档:

如果您的系统中安装了相应的区域设置,则此示例将起作用。

You could use setlocale function before calling date function:

$newLocale = setlocale(LC_TIME, 'de_DE', 'de_DE.UTF-8');

EDIT: Quote from strftime docs:

This example will work if you have the respective locales installed in your system.

醉态萌生 2024-12-25 16:29:47

如果您安装了国际化扩展,则可以使用IntlDateFormatter 类。

它确实非常强大,并且实际上以您所定位的区域设置的正确格式显示日期和时间。

以德国为例:

// create format
$fmt = datefmt_create("de_DE", IntlDateFormatter::FULL, IntlDateFormatter::NONE, 'Europe/Berlin', IntlDateFormatter::GREGORIAN);

// output (using current time)
echo datefmt_format($fmt , time());

输出:

Dienstag,2011 年 11 月 29 日

If you have the Internationalization extension installed, you can use the IntlDateFormatter class.

It's really quite powerful and actually displays the date and time in the correct format for the locale you're targeting.

An example, for Germany might be:

// create format
$fmt = datefmt_create("de_DE", IntlDateFormatter::FULL, IntlDateFormatter::NONE, 'Europe/Berlin', IntlDateFormatter::GREGORIAN);

// output (using current time)
echo datefmt_format($fmt , time());

Which outputs:

Dienstag, 29. November 2011

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