PHP Write File PHP

PHP Write File  

PHP Write File

PHP Write File

PHP fwrite() and fputs() functions are used to write data into file. To write data into file, you need to use w, r+, w+, x, x+, c or c+ mode.

PHP Write File - fwrite()

The PHP fwrite() function is used to write content of the string into file.

Syntax

  1. int fwrite ( resource $handle , string $string [, int $length ] )  

Example

  1. <?php  
  2. $fp = fopen('data.txt', 'w');//opens file in write-only mode  
  3. fwrite($fp, 'welcome ');  
  4. fwrite($fp, 'to php file write');  
  5. fclose($fp);  
  6.   
  7. echo "File written successfully";  
  8. ?>  

Output: data.txt

welcome to php file write
 

PHP Overwriting File

If you run the above code again, it will erase the previous data of the file and writes the new data. Let's see the code that writes only new data into data.txt file.

  1. <?php  
  2. $fp = fopen('data.txt', 'w');//opens file in write-only mode  
  3. fwrite($fp, 'hello');  
  4. fclose($fp);  
  5.   
  6. echo "File written successfully";  
  7. ?>  

Output: data.txt

hello

PHP Append to File

If you use a mode, it will not erase the data of the file. It will write the data at the end of the file. Visit the next page to see the example of appending data into file.

Download free E-book of PHP


#askProgrammers
Learn Programming for Free


Join Programmers Community on Telegram


Talk with Experienced Programmers


Just drop a message, we will solve your queries