php ile tarayıcı bilgisi |
3 Mesajlar | 1.112 Okunma |
$ curl ipinfo.io/178.245.46.243
{
"ip": "178.245.46.243",
"city": "Istanbul",
"region": "Istanbul",
"country": "TR",
"loc": "41.0138,28.9497",
"postal": "34096",
"timezone": "Europe/Istanbul",
}
$ip = $_SERVER['REMOTE_ADDR'];
$detaylar = json_decode(file_get_contents("http://ipinfo.io/{$ip}/json"));
echo $detaylar->city; // -> "Istanbul" çıktısını aldık