php函式 ~ mkdir的第三個引數
阿新 • • 發佈:2019-02-01
boolmkdir ( string
$pathname
[, int $mode
= 0777 [, bool $recursive
= false [, resource $context
]]] )嘗試新建一個由 pathname 指定的目錄。pathname
目錄的路徑。
mode
預設的 mode 是 0777,意味著最大可能的訪問權。有關 mode 的更多資訊請閱讀 頁面。
Note:
mode
在 Windows 下被忽略。
注意也許想用八進位制數指定模式,也就是說該數應以零打頭。模式也會被當前的 umask 修改,可以用 來改變。
recursive
Allows the creation of nested directories specified in the pathname
.
context
第三個引數是否巢狀建立目錄:為真時,mkdir("/path/to/my/dir", 0700,true);可以建立成功;預設時,預設為假。則會提示找不到目錄。**********************Note: 在 PHP 5.0.0 中增加了對上下文(Context)的支援。有關上下文(Context)的說明參見 Streams。