WP_Filesystem_SSH2::put_contents

Advertisement

Summery Summery

Writes a string to a file.

Syntax Syntax

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

Parameters Parameters

$file

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

$contents

(Required) The data to write.

$mode

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

Default value: false

Return Return

(bool) True on success, false on failure.

Source Source

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

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

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

		return true;
	}

	/**
	 * Gets the current working directory.

Advertisement

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.

Advertisement

Leave a Reply