我有一个 PHP 脚本,它使用 Google Maps API 和 JavaScript 地理定位系统计算距离。
我想在我的 PHP 代码中获取当前用户的坐标,例如:
$user_location = array(latitude, longitude);
截至目前,我正在尝试这样的事情:
位置.php:
$contents = file_get_contents('user_loc.html');
if ($contents != "false") {
$user_location = explode(',', $contents);
}
// Do stuff with coordinates
user_loc.html:
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
navigator.geolocation.getCurrentPosition(
function (position) {
console.log(position.coords.latitude);
document.write(position.coords.latitude + ',' + position.coords.longitude);
},
function (error) {
document.write("false");
},
{
timeout: (5 * 1000),
maximumAge: (1000 * 60 * 15),
enableHighAccuracy: true
}
);
</script>
</head>
<body>
</body>
</html>
我很确定这不是最好的方法。有什么建议么?