让 FuelPHP 观察者使用 MySQL 日期时间
我试图让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个有点 hacky 的东西,从一开始就应该是一个配置值,我们将在 1.1 中修复它。
现在最好的方法可能是为使用 CreatedAt/UpdatedAt 观察者的模型提供一个
_init()
方法,如下面的代码。 init 方法在加载类后由自动加载器调用。顺便说一句,在我们的论坛或 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.Btw asking a question on our forums or on IRC will probably get you faster answers.