Changes filesystem permissions.
Parameters
$file
stringrequired- Path to the file.
$mode
int|falseoptional- The permissions as octal number, usually 0644 for files, 0755 for directories.
Default:
false
$recursive
booloptional- If set to true, changes file permissions recursively.
Default:
false
Source
public function chmod( $file, $mode = false, $recursive = 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 chmod( $file, $mode );
}
// Is a directory, and we want recursive.
$file = trailingslashit( $file );
$filelist = $this->dirlist( $file );
foreach ( (array) $filelist as $filename => $filemeta ) {
$this->chmod( $file . $filename, $mode, $recursive );
}
return true;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
There must be a way to disable this. The server’s umask is correctly configured and this is useless work and in default configuration makes WordPress less secure. Trust the admin. umask is there for a reason. And besides that, umask can be set by php, which is much more efficient and more secure than chmod’ing everything after the fact.