function _getHostName($mac,$ip){ if(is_ipaddr($ip)) { $hostname = gethostbyaddr($ip); list($ip, $scope) = explode("%", $ip); if($hostname <> "" and $hostname <> $ip) { return $hostname; } else { $hostname = exec("arp -a | grep $mac | cut -f 1 -d ' '"); if ($hostname <> '?') { return $hostname; } else { return ""; } } }}