PHP: Lire un caractère d’un fichier

Author:
 
Its syntax is: string fgetc (int filepointer)
 
<?
$fh = fopen("data.txt", "r");
while (! feof($fh)) :
     $char = fgetc($fh);
     print $char;
endwhile;
 
fclose($fh);
?>
  
  

Leave a Reply

Your email address will not be published. Required fields are marked *


6 × = eighteen