Zend_Date 在线返回奇怪的格式 - 在我的本地主机上工作正常

发布于 2024-09-09 01:30:59 字数 297 浏览 5 评论 0原文

我有以下代码来格式化日期:

$date = new Zend_Date();
$date->set(strtotime($some_date);
echo ($date->get(Zend_Date::DATE_FULL));

它可以在我的本地主机上很好地输出我需要输出的日期。然而,在我的在线服务器上,日期以奇怪的数字方式输出。

即显示日和月的数值而不是文本 - 它读作 2, 2010 7 12 而不是 2010 年 7 月 12 日星期一

我该如何解决这个问题!

I have the following code to format dates:

$date = new Zend_Date();
$date->set(strtotime($some_date);
echo ($date->get(Zend_Date::DATE_FULL));

it wokrs fine on my localhost outputting the date as I need it to be outputted. However on my online server the dates are outputted in a weird numerical way.

i.e the numeric value fo the Day and month are shown instead of the text - it reads as 2, 2010 7 12 instead of Monday 12th July 2010

How do I fix this!

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

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

发布评论

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

评论(1

初心未许 2024-09-16 01:30:59

在我看来,它在服务器上使用了不同的区域设置。尝试设置一个区域设置,看看会发生什么: http://framework. zend.com/manual/en/zend.locale.introduction.html

Sounds to me like it's using a different locale on the server. Try setting a locale and see what happens then: http://framework.zend.com/manual/en/zend.locale.introduction.html

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