<?php $file = new SplFileObject("file.txt"); while(!$file->eof()) { echo $file->fgets()."<br/>"; } $file = null; ?>