PHP:
function logger($file, $ip) {
$log = fopen($file, "c");
$scritta = date('m-d-Y h:i:s a', time()) . ", ";
$infoIp = file_get_contents("http://ipinfo.io/" . $ip . "/json");
$infoIp = json_decode($infoIp);
$country = $infoIp["country"] . " - ";
$city = $infoIp["city"] . ", ";
$host = $infoIp["hostname"];
/* $scrivi = fwrite($log, $ip . " - " . $scritta . $dettagli); */
fclose($log);
return($infoIp);
}
PROVANDO A STAMPARE IL RISULTATO DELLA FUNZIONE MI RESTITUISCE UNA VARIABILE VUOTA. DOVE SBAGLIO?