如何在PHP中将英语日期格式转换为德语日期格式
您好,我有这样的日期格式
(英语格式)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在调用
之前使用
函数:setlocale
函数日期编辑:引用
strftime
文档:You could use
setlocale
function before callingdate
function:EDIT: Quote from
strftime
docs:如果您安装了国际化扩展,则可以使用IntlDateFormatter 类。
它确实非常强大,并且实际上以您所定位的区域设置的正确格式显示日期和时间。
以德国为例:
输出:
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:
Which outputs:
Dienstag, 29. November 2011