比较 symfony 中的 DateTime 对象(与 propel)

发布于 2024-12-19 19:47:55 字数 423 浏览 0 评论 0原文

我想比较 php 代码中的两个 DateTime 对象。我正在使用 Symfony 1.4 和 Propel。

$article = $obj->getArticle();
if($article->getVisibleFrom() <= new DateTime()) {
     DO_SOMETHING();
}

问题是我从 getVisibleFrom() getter 获取字符串(而不是 DateTime 对象)。 数据库中 visible_from 字段的类型为 DATETIME。 我读到,通过 Doctrine,我可以使用函数 getDateTimeObject('visible_from')

I want to compare two DateTime objects in php code. I'm using Symfony 1.4 with Propel.

$article = $obj->getArticle();
if($article->getVisibleFrom() <= new DateTime()) {
     DO_SOMETHING();
}

The problem is that I'm getting string from getVisibleFrom() getter (instead of DateTime object).
In database visible_from field is type of DATETIME.
I read that with Doctrine I could use function getDateTimeObject('visible_from').

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

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

发布评论

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

评论(1

空名 2024-12-26 19:47:55

您可以通过更改构建属性来更改构建时的默认行为: http://www .propelorm.org/reference/buildtime-configuration.html#datetime_settings

这是时间 getter 的文档:http://www.propelorm.org/reference/active-record.html#temporal_columns

威廉

You can change the default behavior at build time by changing build properties: http://www.propelorm.org/reference/buildtime-configuration.html#datetime_settings

And here is the doc for the temporal getters: http://www.propelorm.org/reference/active-record.html#temporal_columns

William

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