PHP
HTML
CSS
JavaScript
jQuery
SQL
WordPress
PHP Reference

Quick Reference

The PHP file_put_contents() writes data to a file.

This function follows these rules when accessing a file:

  1. If FILE_USE_INCLUDE_PATH is set, check the include path for a copy of filename
  2. Create the file if it does not exist
  3. Open the file
  4. Lock the file if LOCK_EX is set
  5. If FILE_APPEND is set, move to the end of the file. Otherwise, clear the file content
  6. Write the data into the file
  7. Close the file and release any locks
				
					<?php
echo file_put_contents('test.txt', 'Hello World!');
?>
				
			

Output

				
					// writes data to a file
				
			

Syntax

				
					file_put_contents(filename, data, mode, context)
				
			

Parameters

ParameterDescription
filenameSpecifies the path to the file to write to; if the file does not exist, this function will create one (required)
dataThe data to write to the file
modeSpecifies how to open/write to the file:

  • FILE_USE_INCLUDE_PATH - search for filename in the include directory

  • FILE_APPEND - if file already exists, append the data to it - instead of overwriting it

  • LOCK_EX - Put an exclusive lock on the file while writing to it

contextSpecifies the context of the file handle; context is a set of options that can modify the behavior of a stream

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

PHP
HTML
CSS
JavaScript
jQuery
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.