WP_Filesystem_SSH2::put_contents( string $file, string $contents, int|false $mode = false ): bool

In this article

Writes a string to a file.

Parameters

$filestringrequired
Remote path to the file where to write the data.
$contentsstringrequired
The data to write.
$modeint|falseoptional
The file permissions as octal number, usually 0644.

Default:false

Return

bool True on success, false on failure.

Source

public function put_contents( $file, $contents, $mode = false ) {
	$ret = file_put_contents( $this->sftp_path( $file ), $contents );

	if ( strlen( $contents ) !== $ret ) {
		return false;
	}

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

	return true;
}

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

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