Zend_Date 在线返回奇怪的格式 - 在我的本地主机上工作正常
我有以下代码来格式化日期:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,它在服务器上使用了不同的区域设置。尝试设置一个区域设置,看看会发生什么: 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