WP_Filesystem_SSH2::chmod()publicWP 2.7.0

Changes filesystem permissions.

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

Хуков нет.

Возвращает

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

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

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->chmod( $file, $mode, $recursive );
$file(строка) (обязательный)
Path to the file.
$mode(int|false)
The permissions as octal number, usually 0644 for files,
0755 for directories.
По умолчанию: false
$recursive(true|false)
If set to true, changes file permissions recursively.
По умолчанию: false

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

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

Код WP_Filesystem_SSH2::chmod() WP 6.5.2

public function chmod( $file, $mode = false, $recursive = false ) {
	if ( ! $this->exists( $file ) ) {
		return false;
	}

	if ( ! $mode ) {
		if ( $this->is_file( $file ) ) {
			$mode = FS_CHMOD_FILE;
		} elseif ( $this->is_dir( $file ) ) {
			$mode = FS_CHMOD_DIR;
		} else {
			return false;
		}
	}

	if ( ! $recursive || ! $this->is_dir( $file ) ) {
		return $this->run_command( sprintf( 'chmod %o %s', $mode, escapeshellarg( $file ) ), true );
	}

	return $this->run_command( sprintf( 'chmod -R %o %s', $mode, escapeshellarg( $file ) ), true );
}