Powered by Ajaxy
Digg StumbleUpon LinkedIn YouTube Flickr Facebook Twitter RSS Reset

PHP: Fermer un fichier avec la fonction fclosde()

 
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.

Leave a Comment


9 × seven =