PHP fileperms() 函數(shù)
PHP fileperms() 函數(shù)

定義和用法
fileperms() 函數(shù)返回文件或目錄的權(quán)限。
如果成功,該函數(shù)以數(shù)字形式返回權(quán)限。如果失敗,則返回 FALSE。
語法
fileperms(filename)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會(huì)被緩存。請(qǐng)使用 clearstatcache() 來清除緩存。
實(shí)例 1
<?php
echo fileperms("test.txt");
?>
echo fileperms("test.txt");
?>
上面的代碼將輸出:
33206
實(shí)例 2
以八進(jìn)制值顯示權(quán)限:
<?php
echo substr(sprintf("%o",fileperms("test.txt")),-4);
?>
echo substr(sprintf("%o",fileperms("test.txt")),-4);
?>
上面的代碼將輸出:
1777

相關(guān)文章
- PHP 變量
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)據(jù)類型
- PHP If Else 語句
- PHP 文件處理
- PHP 文件上傳
- PHP array_column() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP asort() 函數(shù)
- PHP extract() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Date/Time 函數(shù)