int fclose (int filepointer) <? $file = "data.txt"; if (file_exists($file)) : $fh = fopen($file, "r"); fclose($fh); else: print "Le fichier $file n'existe pas!"; endif; ?> |
0
int fclose (int filepointer) <? $file = "data.txt"; if (file_exists($file)) : $fh = fopen($file, "r"); fclose($fh); else: print "Le fichier $file n'existe pas!"; endif; ?> |
No comments yet.