PHP fileowner() 函数
PHP fileowner() 函数
完整的 PHP Filesystem 参考手册定义和用法
fileowner() 函数返回指定文件的用户 ID(所有者)。
如果成功,该函数返回用户 ID。如果失败,则返回 FALSE。
语法
fileowner(filename)
参数 | 描述 |
---|---|
filename | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
注释:该函数不能在 Windows 系统上运行。
提示:请使用 posix_getpwuid() 来把用户 ID 转换为用户名。
实例
<?php
echo fileowner("test.txt");
?>
echo fileowner("test.txt");
?>
完整的 PHP Filesystem 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP 常量
- PHP For 循环
- PHP $_GET 变量
- PHP Session
- PHP JSON
- PHP array_column() 函数
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_map() 函数
- PHP array_replace_recursive() 函数
- PHP array_shift() 函数
- PHP array_udiff() 函数
- PHP array_walk() 函数
- PHP extract() 函数
- PHP prev() 函数
- PHP shuffle() 函数