Nasıl Yer API bir IP üzerinde bilgi almak için Regex kullanmak istiyorsunuz
Bu API
http://ipinfodb.com/ip_query.php?ip=74.125.45.100
Ben Ülke Adı, Bölge / Devlet ve Şehir almak gerekir.
Ben bu çalıştı:
$ip = $_SERVER["REMOTE_ADDR"];
$contents = @file_get_contents('http://ipinfodb.com/ip_query.php?ip=' . $ip . '');
$pattern = "/<CountryName>(.*)<CountryName>/";
preg_match($pattern, $contents, $regex);
$regex = !empty($regex[1]) ? $regex[1] : "FAIL";
echo $regex;
Ben echo $ regex ne zaman ben her zaman bu nasıl düzeltebilirim FAIL olsun