Zend_Date 并在安装上设置时区
我有一个 ZF 应用程序,并在 MySQL 数据库中将时间保存为 UTC。当我检索它们时,我想告诉 Zend_Ddate 它们是 UTC,而不是 'America/Los Angeles' 的 php.ini 中设置的时区。
目前,我正在像这样实例化:
$date=new Zend_Date($item['created_on_utc'],Zend_Date::ISO_8601,'en_US');
但感觉应该有一种方法来告诉 Zend_Date 这是一个 utc 日期。我该怎么做呢?
谢谢
I have a ZF app and am saving times as UTC in MySQL db. When I retrieve, them I'd like to tell Zend_Ddate that they are UTC rather than the timezone set in php.ini of 'America/Los Angeles'.
Currently, I'm instantiating like this:
$date=new Zend_Date($item['created_on_utc'],Zend_Date::ISO_8601,'en_US');
but feel like there should be a way to tell Zend_Date that is a utc Date. How would I do that?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下操作:
try the following: