<?
$phpfilesystem = fopen("php latest technologies.txt", "r");//read only
if ($phpfilesystem) {
while (!feof($phpfilesystem)) {
$buffer = fgets($phpfilesystem, 4096);
echo $buffer;
}
fclose($phpfilesystem);
}
?>
Saturday, July 26, 2008
PHP Filesystems - fgets, feof, fclose
Posted by
ashok
at
12:26 PM
Labels: PHP Filesystems
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment