Propel过滤所有具有今天日期的行作为mysql数据库中的时间戳

时间:2014-01-07 11:30:33

标签: php propel

如何使用propel:

仅过滤当天(今天)的结果
$checkIfMaxNrOfPointsTransactionsForToday = PointsTransactionsQuery::create()                  
            ->filterByTimeCreated(array('max' => 'today'))              
            ->filterByUserId($this->userId)
            ->count();

由于

1 个答案:

答案 0 :(得分:0)

Here是我觉得有用的答案。只需将min和max放在当前日期之内。