PHP fileperms() 函数
PHP fileperms() 函数
完整的 PHP Filesystem 参考手册定义和用法
fileperms() 函数返回文件或目录的权限。
如果成功,该函数以数字形式返回权限。如果失败,则返回 FALSE。
语法
fileperms(filename)
参数 | 描述 |
---|---|
filename | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
实例 1
<?php
echo fileperms("test.txt");
?>
echo fileperms("test.txt");
?>
上面的代码将输出:
33206
实例 2
以八进制值显示权限:
<?php
echo substr(sprintf("%o",fileperms("test.txt")),-4);
?>
echo substr(sprintf("%o",fileperms("test.txt")),-4);
?>
上面的代码将输出:
1777
完整的 PHP Filesystem 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP If Else 语句
- PHP 文件处理
- PHP 文件上传
- PHP array_column() 函数
- PHP array_combine() 函数
- PHP array_merge_recursive() 函数
- PHP array_push() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP array_sum() 函数
- PHP array_uintersect_uassoc() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP extract() 函数
- PHP sizeof() 函数
- PHP 5 Date/Time 函数