0

当他访问我的网站时,我需要获取用户的国家代码。我正在使用这个 JS 代码,它工作得很好,但我需要使用 php。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
</head>
<body></body> 
   <script type="text/javascript">


        function geoTest() {
            if (google.loader.ClientLocation) {
            var country_code = google.loader.ClientLocation.address.country_code;
            var text = country_code;
            } else {
                var text = 'Google was not able to detect your location';
            }
            document.body.innerHTML = text;
        }
        geoTest();
    </script>
</html>

我搜索了谷歌是否有 php api,结果发现他们没有。知道当他访问我的网站时如何获取用户国家代码吗?例如使用他或她的IP?

4

0 回答 0