私はいくつかのIPロケーションファインダーを使用していますが、それは不気味でした。限られた場所だけを見つけるわけではありません。
それから私はいくつかのウェブサイトであなたの場所を見つけるこのGoogleAPIコードを見つけました、そしてそれは私が推測する世界中で機能します。
問題は、コードがJavaScriptを使用していて、私が欲しいのはphpです。コードは次のとおりです。
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
function geoTest() {
if (google.loader.ClientLocation) {
var latitude = google.loader.ClientLocation.latitude;
var longitude = google.loader.ClientLocation.longitude;
var city = google.loader.ClientLocation.address.city;
var country = google.loader.ClientLocation.address.country;
var country_code = google.loader.ClientLocation.address.country_code;
var region = google.loader.ClientLocation.address.region;
var text = 'Your Location<br /><br />Latitude: ' + latitude + '<br />Longitude: ' + longitude + '<br />City: ' + city + '<br />Country: ' + country + '<br />Country Code: ' + country_code + '<br />Region: ' + region;
} else {
var text = 'Google was not able to detect your location';
}
document.write(text);
}
geoTest();
</script>
google.loader.ClientLocation.address.city
PHPコードに渡したいです。
それ以外の場合は、PHPまたはxmlで同じことを行う他のGoogleAPIに精通している場合。