WP_Filesystem_Direct::put_contents( string $file, string $contents, int $mode = false )

Write a string to a file


Description Description


Parameters Parameters

$file

(string) (Required) Remote path to the file where to write the data.

$contents

(string) (Required) The data to write.

$mode

(int) (Optional) The file permissions as octal number, usually 0644.

Default value: false


Top ↑

Return Return

(bool) False upon failure, true otherwise.


Top ↑

Source Source

File: wp-admin/includes/class-wp-filesystem-direct.php

	public function put_contents( $file, $contents, $mode = false ) {
		$fp = @fopen( $file, 'wb' );
		if ( ! $fp ) {
			return false;
		}

		mbstring_binary_safe_encoding();

		$data_length = strlen( $contents );

		$bytes_written = fwrite( $fp, $contents );

		reset_mbstring_encoding();

		fclose( $fp );

		if ( $data_length !== $bytes_written ) {
			return false;
		}

		$this->chmod( $file, $mode );

		return true;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.