Propel - 检查日期
Propel有查看日期的功能吗?例如,我在数据库中有:
2011-12-28 11:11
如果当前日期比 1 天高,我想得到这个。 如果当前日期 == 2011-12-27 11:10 那么应该返回 OK,如果当前日期 == 2011-12-27 11:12 不应该返回 OK。
我可以得到这个 PHP 并检查,但也许我可以立即在 Propel 中检查它。
Are function of Propel to checking date? For example i have in database:
2011-12-28 11:11
i would like get this if current date is higher of 1 days.
if current date == 2011-12-27 11:10 then should be return OK, and if current date == 2011-12-27 11:12 should'nt return OK.
I can get this for PHP and checking, but maybe i can checking this immediately in Propel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在使用 Criteria 对象(未经测试,但应该可以帮助您入门):
Assuming you are using the Criteria object (untested but should get you started):