Pixelomo
0
Q:

php read file

<?php
file_get_contents("file.txt");
?>
5
/*
In php to read file first you have to use 'fopen' method to open the file after that you perform different operation on it.
Like Reading file, Writing file etc.
  
TO read file data we have to use 'fread' method.
*/

<?php
$myfile = fopen("read_text_file.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("read_text_file.txt"));
fclose($myfile);
?>
  
/*
I hope it will help you.
Namaste
Stay Home Stay Safe
*/
3
<?php
  echo file_get_contents("text.txt");
?>
1

 <?php
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("webdictionary.txt"));

 fclose($myfile);
?>
 
2
echo readfile("test.txt");
0

 AJAX = Asynchronous JavaScript and XML
CSS = Cascading Style Sheets

 HTML = Hyper Text Markup Language
PHP = PHP Hypertext Preprocessor
SQL = Structured Query Language
SVG = Scalable Vector Graphics
XML = EXtensible Markup Language
0

New to Communities?

Join the community