codice:
$tmp=file('file.txt');
array_pop($tmp);
$handle = fopen('file.txt', 'w');
foreach($tmp as $v)
   fwrite($handle,$v);
fclose($handle);