如何在symfony 4中使用utc_timestamp?
使用utc_timestamp时获取以下消息
[语义错误]第0行,第199页'UTC_TIMESTAMP'附近:错误:未定义'UTC_TIMESTAMP'。
我认为你需要使用utc_timestamp和doctrine。您可以在doctrine.yaml文件中包含库。
orm:
dql:
string_functions:
UTC_TIMESTAMP: DoctrineExtensions\Query\Mysql\UtcTimestamp
检查上面的代码。可能会有所帮助。
似乎有错误的方法来使用它。 UTC_TIMESTAMP与括号一起使用。它应该像:
$qb->andWhere("(pv.appointmentDate) >= UTC_TIMESTAMP()");