Why does mkdir not set CHMOD to 0777?
mkdir('/var/www/test', 0777);
After the dir is made the CHMOD is set to 0755
from php.net
bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = false [, resource $context ]]] )
the $mode should be 0777 by default... but if you leave the second argument empty the CHMOD still is set to 0755
umask$old = umask(0); chmod("/path/some_dir/some_file.txt", 0755); umask($old);– Brad Christie Nov 8 '11 at 16:05