umask
Description
The umask of Filesystem for PHP changes the current umask.
Syntax
umask( ?int $mask = null ): int
Parameters
mask
The new umask.
Return
Returns the current umask if mask is null, otherwise the old umask is returned.
Examples
1 · void
<? $return = umask(); $format = "%04o"; printf($format, $return); ?>
1
2 · mask
<? $old = umask(0); $format = "%04o\n"; printf($format, $old); $filename = "myfile.txt"; $mode = 0755; chmod($filename, $mode); $return = umask($old); printf($format, $return); $current = umask(); printf($format, $current); if($old != $current) { die('an error occurred while changing back the umask'); } ?>
4096
Links
Filesystem
- basename
- chgrp
- chmod
- chown
- clearstatcache
- copy
- dirname
- disk_free_space
- disk_total_space
- diskfreespace
- fclose
- feof
- fflush
- fgetc
- fgetcsv
- fgets
- file
- file_exists
- file_get_contents
- file_put_contents
- fileatime
- filectime
- filegroup
- fileinode
- filemtime
- fileowner
- fileperms
- filesize
- filetype
- flock
- fnmatch
- fopen
- fpassthru
- fputcsv
- fputs
- fread
- fscanf
- fseek
- fstat
- ftell
- ftruncate
- fwrite
- glob
- is_dir
- is_executable
- is_file
- is_link
- is_readable
- is_uploaded_file
- is_writable
- is_writeable
- lchgrp
- lchown
- link
- linkinfo
- lstat
- mkdir
- move_uploaded_file
- pathinfo
- pclose
- popen
- readfile
- readlink
- realpath
- realpath_cache_get
- realpath_cache_size
- rename
- rewind
- rmdir
- set_file_buffer
- stat
- symlink
- tempnam
- tmpfile
- touch
- unlink