php中的空间索引查询
我正在尝试用 PHP 编写空间索引查询。 但我在为以下代码行编写查询时遇到问题......
SET @p = CONCAT('Polygon((',lat1,'',lon1,',',lat1,'',lon2,',',lat2,'',lon2,',',lat2,'',lon1,',',lat1,'',lon1,'))');
I'm trying to write a query in PHP for a spatial index. But I'm having trouble writing the query for the following line of code...
SET @p = CONCAT('Polygon((',lat1,'',lon1,',',lat1,'',lon2,',',lat2,'',lon2,',',lat2,'',lon1,',',lat1,'',lon1,'))');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 php 中使用 mysql 扩展,则此查询返回错误。 如果使用 mysql 扩展,请使用 mysqli 扩展
if you use mysql extension in php , this query returned to error. if use mysql extension , please use mysqli extension
通常正确的顺序(有一些奇怪的例外)是
(long lat)
,而不是(lat long)
。 或者您只是在lat1 long1
之间的 concat 中缺少一个空格? WKT 语法为:GeomFromText('POLYGON(long1 lat1, long2 lat2, long3 lat3)')
坐标用空格分隔,点用逗号分隔。 甚至可能存在大小写敏感问题,尽管规范不区分大小写,但最好使用
全部大写
,并且我收到了我认为与大小写相关的错误。The generally correct order (with a few odd exceptions) is
(long lat)
, not(lat long)
. Or are you just missing a space in your concat betweenlat1 long1
? The WKT syntax is:GeomFromText('POLYGON(long1 lat1, long2 lat2, long3 lat3)')
Coordinates are separated by a space, points by a comma. There may even be a case sensitivity problem, though the spec is case insensitive, it is best to use
ALL CAPS
, and I have gotten errors that I think were related to case.