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