WP_Filesystem_Direct::getchmod()
Gets the permissions of the specified file or filepath in their octal format.
FIXME does not handle errors in fileperms()
Method of the class: WP_Filesystem_Direct{}
No Hooks.
Return
String
. Mode of the file (the last 3 digits).
Usage
$WP_Filesystem_Direct = new WP_Filesystem_Direct(); $WP_Filesystem_Direct->getchmod( $file );
- $file(string) (required)
- Path to the file.
Changelog
Since 2.5.0 | Introduced. |
WP_Filesystem_Direct::getchmod() WP Filesystem Direct::getchmod code WP 6.6.2
public function getchmod( $file ) { return substr( decoct( @fileperms( $file ) ), -3 ); }