_________________________________________________________________________________
Showing posts with label php file write. Show all posts
Showing posts with label php file write. Show all posts
Sunday, 25 August 2013
Wednesday, 21 August 2013
How to read a file character by character in php ?
<?php
$file=fopen("filename.txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file);
}
fclose($file);
?>
$file=fopen("filename.txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file);
}
fclose($file);
?>
Subscribe to:
Posts (Atom)
