WP_Filesystem_FTPext::getchmod
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 Filesystem FTPext::getchmod WP 7.0
public function getchmod( $file ) {
$dir = $this->dirlist( $file );
return $dir[ $file ]['permsn'] ?? '';
}