100, IP'nin bulunduğu satır mı yoksa toplam kayıtlı IP sayısı mı, emin olamadım?


$ipler = file_get_contents("Proxy.txt");
$ipler = explode("\n", $ipler);

$ip = $_GET['ip'];

if (in_array($ip, $ipler)) {
$sira = (array_search($ip, $ipler)) + 1;
echo count($ipler)." IP kayıtlı. 101.200.234.114 IPsi $sira. satırda var.";
} else {
echo "IP, listede yok.";
}

?>