| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
  [2001-05-23 05:19 UTC] javieracastro at hotmail dot com
 mkdir("test",0777)
the directory is dwrx-rx-rx, not dwrxwrxwrx :)
why?
or it is my server with some rare php config?
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 06:00:01 2025 UTC | 
Your umask setting is most likely the cause. Please try this instead: <?php $oldumask = umask(0); mkdir('mydir', 0777); umask($oldumask); ?>