从CakePHP中的lat / lng获取附近的数据

时间:2014-08-11 23:31:41

标签: php sql cakephp cakephp-2.4

我正在尝试使用Euromark的地理编码行为(他的工具插件的一部分)来获取我的CakePHP 2.4.3应用程序中的附近帖子,并且已经出现了SQL错误。这是我的控制器代码:

    $this->Post->Behaviors->attach('Tools.Geocoder');
    $this->Post->setDistanceAsVirtualField(44, 50);  //or whatever coords
    $options = array(
        'contain' => array(), //same error when I don't use this, just using it to keep the SQL query easier to read
        'order' => array('Post.distance' => 'ASC', 'limit' => 10)
    );
    $posts = $this->Post->find('all', $options);
    $this->set('posts', $posts);

这会引发SQL错误;它说语法有问题:

SELECT 
    `Post`.`id`, `Post`.`lat`, `Post`.`lng`, `Post`.`body`, 
    (6371.04 * ACOS(
        COS(
            PI() / 2 - RADIANS(90 - `Post`.`lat`)
        ) * COS(
            PI() / 2 - RADIANS(90 - 44)
        ) * COS(
            RADIANS(`Post`.`lng`) - RADIANS(50)
        ) + SIN(
            PI() / 2 - RADIANS(90 - `Post`.`lat`)
        ) * SIN(
            PI() / 2 - RADIANS(90 - 44)
        )
    )) AS `Post__distance`
FROM `database`.`posts` AS `Post` 
WHERE 1 = 1 

ORDER BY 
    (6371.04 * ACOS(
        COS(
            PI() / 2 - RADIANS(90 - `Post`.`lat`)
        ) * COS(
            PI() / 2 - RADIANS(90 - 44)
        ) * COS(
            RADIANS(`Post`.`lng`) - RADIANS(50)
        ) + SIN(
            PI() / 2 - RADIANS(90 - `Post`.`lat`)
        ) * SIN(
            PI() / 2 - RADIANS(90 - 44)
        )
    )) ASC, 
`limit` 10

我正在使用最新版本的插件,它说是Cake 2.x.我的帖子的地理位置数据存储为Post.latPost.lng。任何想法为什么会创建格式错误的SQL?我的SQL技能是这样的,我无法发现错误,可能是插件没问题,而且我的控制器操作有一些。

2 个答案:

答案 0 :(得分:2)

最后你在ASC之后得到一个逗号,并且限制在反引号中。当SQL查询获得它不期望的参数时,Cake会对SQL查询做出奇怪的事情。我怀疑你的问题是这个:

'order' => array('Post.distance' => 'ASC', 'limit' => 10)

尝试:

'order' => 'Post.distance ASC',
'limit' => 10

答案 1 :(得分:0)

你基本上错误地嵌套你的数组

'order' => array('Post.distance' => 'ASC', 'limit' => 10)

应该是(注意结束括号)

'order' => array('Post.distance' => 'ASC'), 'limit' => 10