From ddcde85408cb2ea1dc2bf97ec6f12b1a84ad4969 Mon Sep 17 00:00:00 2001 From: Nicolas Chaillan Date: Fri, 3 Jan 2003 19:58:58 +0000 Subject: [PATCH] fixing #18293, adding more informations about mode git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@110231 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/mkdir.xml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/reference/filesystem/functions/mkdir.xml b/reference/filesystem/functions/mkdir.xml index c30ad9d292..b7bd4629b6 100644 --- a/reference/filesystem/functions/mkdir.xml +++ b/reference/filesystem/functions/mkdir.xml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ intmkdir stringpathname - intmode + [intmode] Attempts to create the directory specified by pathname. @@ -21,6 +21,13 @@ octal number, which means it should have a leading zero. The mode is also modified by the current umask, which you can change using umask. + + Mode is NOT needed on Windows. + + Please note also that mode is optional and that + it is by default '0777' (read, write and execution for EVERY + access). If you need more informations about mode under + UNIX systems, please read 'man 1 chmod' and 'man 2 chmod'.