让 FuelPHP 观察者使用 MySQL 日期时间

发布于 2024-11-29 22:07:14 字数 193 浏览 0 评论 0原文

我试图让 FuelPHP ORM Observers 使用 MySQL 日期时间而不是 unix 时间戳,但是我不知道如何使用文档中提供的代码。

他们提供了这个代码: Orm\Observer_CreatedAt::$mysql_timestamp = true;

但我在哪里使用这个呢?在模型中?那里似乎不起作用。

谢谢!

I was trying to get the FuelPHP ORM Observers to use MySQL datetimes rather than unix timestamps, however I can't figure out how to use the code provided in the docs.

They provide this code:
Orm\Observer_CreatedAt::$mysql_timestamp = true;

But where do I use this? In the model? It doesn't seem to work there.

Thanks!

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

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

发布评论

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

评论(1

羁拥 2024-12-06 22:07:14

这是一个有点 hacky 的东西,从一开始就应该是一个配置值,我们将在 1.1 中修复它。

现在最好的方法可能是为使用 CreatedAt/UpdatedAt 观察者的模型提供一个 _init() 方法,如下面的代码。 init 方法在加载类后由自动加载器调用。

public static function _init()
{
    Orm\Observer_CreatedAt::$mysql_timestamp = true;
    Orm\Observer_UpdatedAt::$mysql_timestamp = true;
}

顺便说一句,在我们的论坛或 IRC 上提问可能会让您更快得到答案。

This is something that was put in a bit hacky and should have been a config value from the beginning, something we'll fix for 1.1.

Best way to do it right now is probably to give the models using the CreatedAt/UpdatedAt observers an _init() method like the code below. The init method is called by the autoloader after loading the class.

public static function _init()
{
    Orm\Observer_CreatedAt::$mysql_timestamp = true;
    Orm\Observer_UpdatedAt::$mysql_timestamp = true;
}

Btw asking a question on our forums or on IRC will probably get you faster answers.

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