如何使用 utc 时间戳 symfony 4?

how to use utc timestamp symfony 4?

如何在 Symfony 4 中使用 utc_timestamp?

使用 utc_timestamp

时收到以下消息

[Semantical Error] line 0, col 199 near 'UTC_TIMESTAMP': Error: 'UTC_TIMESTAMP' is not defined.

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

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

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

好像是使用方法不对。 UTC_TIMESTAMP 与括号一起使用。它应该像:

$qb->andWhere("(pv.appointmentDate) >= UTC_TIMESTAMP()");