WP_Filesystem_SSH2::put_contents()publicWP 2.7.0

Writes a string to a file.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

true|false. True on success, false on failure.

Usage

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->put_contents( $file, $contents, $mode );
$file(string) (required)
Remote path to the file where to write the data.
$contents(string) (required)
The data to write.
$mode(int|false)
The file permissions as octal number, usually 0644.
Default: false

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::put_contents() code WP 6.5.2

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;
}