Verwenden von GeoIP + PHP
Methode 1:
Laden Sie die PHP-Datei geoip.inc von GeoIP herunter und speichern Sie sie als geoip.inc.php
http://sjolzy.cn/php/GeoIP/bak/geoip. inc
PHP-Nutzungscode
<?php include("geoip.inc.php"); $gi = geoip_open("GeoIP.dat",GEOIP_STANDARD); $country_code = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']); $country_name = geoip_country_name_by_addr($gi, $_SERVER['REMOTE_ADDR']); geoip_close($gi); $jsonEcho = array(); $jsonEcho["error"] = 0; $jsonEcho["country_code"] = $country_code; $jsonEcho["country_name"] = $country_name; function jsonp($object, $callback = 'callback') { if (!empty($_GET[$callback])) { header('Content-Type: application/x-javascript'); } else { header('Content-Type: application/json'); } return $_GET[$callback].'('.json_encode($object).')'; } echo jsonp($jsonEcho); ?>
Referenz: http://blog.csdn.net/prince2270/article/details/4592753
Das Obige stellt das GeoIP-PHP-Beispiel vor: Erhalten des Ländernamens und des Codes über IP, einschließlich Aspekten des Inhalts. Ich hoffe, es wird für Freunde hilfreich sein, die an PHP-Tutorials interessiert sind.