WP_Filesystem_Base::put_contents() WordPress Method
WP_Filesystem_Base::put_contents() is a method used to write content to a file. The method takes two arguments: the path to the file and the content to write. The method will return true if the file was successfully written and false if there was an error.
WP_Filesystem_Base::put_contents( string $file, string $contents, int|false $mode = false ) #
Writes a string to a file.
Contents
Parameters
- $file
 (string)(Required)Remote path to the file where to write the data.
- $contents
 (string)(Required)The data to write.
- $mode
 (int|false)(Optional) The file permissions as octal number, usually 0644.
Default value: false
Return
(bool) True on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-base.php
	public function put_contents( $file, $contents, $mode = false ) {
		return false;
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 2.5.0 | Introduced. |