I believe fgets is the answer here.
$handle = fopen($path, 'r+'); // open the file for r/w
while (!feof($handle)) { // while not end
$value = trim(fgets($handle)); // get the trimmed line
if ($value == $input) { // is it the value?
return; // if so, bail out
} //
} // otherwise continue
fwrite($handle, $input); // hasn't bailed, good to write
fclose($handle); // close the file
This answer is based solely on the fact that you have appended a newline ("\n") in your code, which is why fgets will work here. This may be preferable over pulling the whole file into memory with file_get_contents(), simply because the size of the file may be prohibitive of that.
Alternatively, if the values are not newline delimited, but are fixed length, you can always use the $length argument of fgets() to pull exactly $n characters out (or use fread() to pull exactly $n bytes out)
file_get_contents) or gargantuan? – Bracketworks Mar 7 at 11:23