Creates a directory.
Parameters
$path
stringrequired- Path for new directory.
$chmod
int|falseoptional- The permissions as octal number (or false to skip chmod).
Default:
false
$chown
string|int|falseoptional- A user name or number (or false to skip chown).
Default:
false
$chgrp
string|int|falseoptional- A group name or number (or false to skip chgrp).
Default:
false
Source
public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
// Safe mode fails with a trailing slash under certain PHP versions.
$path = untrailingslashit( $path );
if ( empty( $path ) ) {
return false;
}
if ( ! $chmod ) {
$chmod = FS_CHMOD_DIR;
}
if ( ! @mkdir( $path ) ) {
return false;
}
$this->chmod( $path, $chmod );
if ( $chown ) {
$this->chown( $path, $chown );
}
if ( $chgrp ) {
$this->chgrp( $path, $chgrp );
}
return true;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.