Zend_Date 并在安装上设置时区

发布于 2024-08-24 16:22:23 字数 304 浏览 7 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

毅然前行 2024-08-31 16:22:23

尝试以下操作:

date_default_timezone_set — 设置
所有日期/时间使用的默认时区
脚本中的函数

date_default_timezone_set('Etc/UTC');

try the following:

date_default_timezone_set — Sets the
default timezone used by all date/time
functions in a script

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