Home Tutorial Php Examples fgetc() example

 
 

fgetc() example
Posted on: July 30, 2009 at 12:00 AM
This is the example of fgetc().

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);
?>

Related Tags for fgetc() example:


Ask Questions?

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.