Ok, Hi I need help.I making a project and need to find the end of file line of a file.I researched
file_get_contents
of a certain file and it worked but it did not register anything. And then found
feof
and used this:
<?php
while (!feof($f)){}
?>
And it registers the previously appended code at the last of the file but prints the file as string. If you could help me write the function that will print only the eof line.
If you could help me, many thanks!! :D