PHP - 受众准确的设备位置,可能吗?

时间:2018-05-27 07:49:02

标签: php geolocation

想知道我们是否可以使用PHP在更深层次上跟踪用户的设备位置,直到省级?

我注意到我们只能从用户的IP中检测到城市级别:

<?php
$user_ip = getenv('REMOTE_ADDR');
$geo = unserialize(file_get_contents("http://www.geoplugin.net/php.gp?ip=$user_ip"));
$country = $geo["geoplugin_countryName"];
$city = $geo["geoplugin_city"];
?>

我们真的需要从telco获取数据吗?

我很好奇,有时当我到达购物中心时,我会收到商场的欢迎辞。我希望对访问购物中心和浏览我的应用程序的观众做类似的事情。没有电信公司可以实现吗?

感谢。

0 个答案:

没有答案