WP_Filesystem_FTPext::getchmod()publicWP 2.5.0

Gets the permissions of the specified file or filepath in their octal format.

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

Хуков нет.

Возвращает

Строку. Mode of the file (the last 3 digits).

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

$WP_Filesystem_FTPext = new WP_Filesystem_FTPext();
$WP_Filesystem_FTPext->getchmod( $file );
$file(строка) (обязательный)
Path to the file.

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

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

Код WP_Filesystem_FTPext::getchmod() WP 6.5.2

public function getchmod( $file ) {
	$dir = $this->dirlist( $file );

	return $dir[ $file ]['permsn'];
}