Return the current umask:
<?php
$file = "test.txt";
echo (umask());
?>
The umask() function changes the file permissions for files.
This function sets PHP's umask to mask & 0777 and returns the old umask.
umask(
mask)
Parameter | Description |
---|---|
mask | Optional. Specifies the new permissions. Default is 0777 The mask parameter consists of four numbers:
Possible values (to set multiple permissions, add up the following numbers):
|
Return Value: | If you call umask() without any arguments, it returns the current umask, otherwise it returns the old umask |
---|---|
PHP Version: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!