[php] [txtfile] lire la première ligne de texte d'un fichier sur le serveur


/ Published in: PHP
Save to your folder(s)

read the first line of text of a file on the server

To read the first line of text in your file:
The fgets () function retrieves the first 4096 characters from the first line of your file.


Copy this code and paste it in your HTML
  1. <?php
  2.  
  3. /*
  4. Pour lire la première ligne de texte de votre fichier:
  5. La fonction fgets() récupère les 4096 premiers caractères de la première ligne de votre fichier.
  6. */
  7.  
  8. $file = fopen( "fichier.txt", "r" );
  9. $content = fgets($file, 4096);
  10. fclose($file);
  11. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.