我複製粘貼下面的代碼,我是一個noob在這。那麼你能指出錯誤嗎?我很抱歉提出這樣一個愚蠢的問題。使用PHP的地理位置
<HTML>
<HEAD>
</HEAD>
<BODY>
<h3>Client side IP geolocation using <a href="http://ipinfo.io">ipinfo.io</a></h3>
<hr/>
<div id="ip"></div>
<div id="address"></div>
<hr/>Full response: <pre id="details"></pre>
</BODY>
</HTML>
<script type="text/javascript" charset="utf-8">
$.get("http://ipinfo.io", function(response) {
$("#ip").html("IP: " + response.ip);
$("#address").html("Location: " + response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));
}, "jsonp");
</script>
你問轉換在PHP相當於該代碼? – Gabs
IDK只是想運行這個並獲取基於IP地址的地理位置並獲取訪問者的地址。它會起作用嗎? –
我將此文件保存爲location.html –