How do I read from a file by the line number I specify. I just want to read a specific line.
if(($lines = file($file_name)) !== false) { echo $lines[$line_number_to_read]; }