比较 symfony 中的 DateTime 对象(与 propel)
我想比较 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过更改构建属性来更改构建时的默认行为: 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