fgetc() command
The command fgetc() returns a single character from an open file. It is primarily used in small files and runs slowly. It returns False if the location of file pointer is at end of file.
Synopsis
<?php
$file=fopen("New Text Document .txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file);
}
fclose($file);
?>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.