7

我想在我的自定义存储库类中计算距离。问题是 Doctrine 在处理 ACOS 函数时抛出异常:

[Syntax Error] line 0, col 70: Error: Expected known function, got 'ACOS'

这是查询:

public function findLocation($latitude, $longitude)
{
    $em = $this->getEntityManager();
    return $em->createQueryBuilder()
                    ->select('((ACOS(SIN('.$latitude.' * PI() / 180) * SIN(p.latitude * PI() / 180) + COS('.$latitude.' * PI() / 180) * COS(p.latitude * PI() / 180) * COS(('.$longitude.' – p.longitude) * PI() / 180)) * 180 / PI()) * 60 * 1.1515) AS distance')
                    ->from('StrictPlaceBundle:Poi', 'p')
                    ->add('orderBy', 's.distance ASC')
                    ->getQuery()->getResult();    
}

有什么问题?

4

1 回答 1

13

DQL 不支持ACOS 。您当然可以自己添加(请参阅将您自己的函数添加到 DQL 语言)。

此外,您需要的三角函数的 MySQL 实现是DoctrineExtensions的一部分:

于 2012-06-14T08:08:10.357 回答