Ok forse ho capito che voleva dire:
PHP:
<?php
$file = array("room_1.txt","room_2.txt","room_3.txt");
function togli($dato)
{
$p = explode(".", $dato);
return $p[0];
}
natsort($file);
while (list($chiave, $valore) = each($file))
{
$txt = count(file($valore));
echo togli($valore) . " = " . $txt . "<br>";
}
?>