|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-01-01 05:06 UTC] yangmx at bizcn dot com
in apache vhost: mkdir(path, 0777); but the directory's mod is 755 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 17 23:00:01 2025 UTC |
Try this: <?php umask(000); mkdir($path, 0777); ?> In other words, RTFM: http://www.php.net/mkdir