Инструменты пользователя

Инструменты сайта


programming:php:datetime

Это старая версия документа!


DateTime

$endDate->setTime(23, 59, 59);
$startDate = (clone $endDate)->modify('-10 days')->setTime(0, 0, 0);

    public function filterPaymentDatePeriod(QueryBuilder $qb, \DateTime $startDate, \DateTime $endDate)
    {
        $qb->andWhere('AccountTransaction.paymentDate 
        BETWEEN :AccountTransactionStartPaymentDate AND :AccountTransactionEndPaymentDate')
            ->setParameter('AccountTransactionStartPaymentDate', $startDate)
            ->setParameter('AccountTransactionEndPaymentDate', $endDate);
        return $this;
    }
programming/php/datetime.1528551130.txt.gz · Последнее изменение: 2018/06/09 16:32 — artur

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki