php read and write file code example

Example 1: read file using php

/*
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
*/

Example 2: write to file php

$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
fwrite($myfile, "Content to write to file");
fclose($myfile);

Example 3: write in a file using php

<?php
$myfile = fopen("file_name.txt", "w") or die("Unable to open file!");
$txt = "Hello world\n";
fwrite($myfile, $txt);
$txt = " Php.\n";
fwrite($myfile, $txt);
fclose($myfile);
?>

Tags:

Php Example