int fclose (int filepointer)
$file = "data.txt";
if (file_exists($file)) :
$fh = fopen($file, "r");
fclose($fh);
else:
print "File $file does not exist!";
endif;
?>
int fclose (int filepointer)
$file = "data.txt";
if (file_exists($file)) :
$fh = fopen($file, "r");
fclose($fh);
else:
print "File $file does not exist!";
endif;
?>