Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 PHP 新手,正在尝试为大学项目构建一个基本的 php 网站。该站点的目的是比较 GPS 坐标(使用 abs() 函数),以便找到离给定地标最近的停车位。
我将所有 GPS 坐标数据都存储在我的数据库中,并且到目前为止可以设法使用 mysql_fetch_array 函数检索它并回显它,但我不确定如何从数组中隔离给定的地标或停车场,然后进行比较他们俩。
任何建议将不胜感激。
您可以使用距离公式作为接近度的衡量标准:d = sqrt((ax-bx)^2 + (ay-by)^2)
其中 (ax, ay) 和 (bx, by) 是地标和停车场的坐标。您也可以完全删除 sqrt() 函数,因为您只是比较其他坐标对的距离。