Propel - 检查日期

发布于 2024-12-23 11:48:47 字数 210 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

独守阴晴ぅ圆缺 2024-12-30 11:48:47

假设您正在使用 Criteria 对象(未经测试,但应该可以帮助您入门):

$criteria->add(YourModelPeer::YOUR_DATE_COLUMN, strtotime("+1 day"), Criteria::LESS_THAN);

Assuming you are using the Criteria object (untested but should get you started):

$criteria->add(YourModelPeer::YOUR_DATE_COLUMN, strtotime("+1 day"), Criteria::LESS_THAN);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文