WP_Filesystem_SSH2::put_contents()publicWP 2.7.0

Writes a string to a file.

Метод класса: WP_Filesystem_SSH2{}

Хуков нет.

Возвращает

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

Использование

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->put_contents( $file, $contents, $mode );
$file(строка) (обязательный)
Remote path to the file where to write the data.
$contents(строка) (обязательный)
The data to write.
$mode(int|false)
The file permissions as octal number, usually 0644.
По умолчанию: false

Список изменений

С версии 2.7.0 Введена.

Код WP_Filesystem_SSH2::put_contents() 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;
}