如何使用utc timestamp symfony 4?

问题描述 投票:2回答:2

如何在symfony 4中使用utc_timestamp?

使用utc_timestamp时获取以下消息

[语义错误]第0行,第199页'UTC_TIMESTAMP'附近:错误:未定义'UTC_TIMESTAMP'。

doctrine doctrine-extensions
2个回答
3
投票

我认为你需要使用utc_timestamp和doctrine。您可以在doctrine.yaml文件中包含库。

orm:
        dql:
            string_functions:
                UTC_TIMESTAMP: DoctrineExtensions\Query\Mysql\UtcTimestamp

检查上面的代码。可能会有所帮助。


2
投票

似乎有错误的方法来使用它。 UTC_TIMESTAMP与括号一起使用。它应该像:

$qb->andWhere("(pv.appointmentDate) >= UTC_TIMESTAMP()");
© www.soinside.com 2019 - 2024. All rights reserved.