目录

PHP fileowner() 函数

❮ PHP 文件系统参考

示例

返回 "test.txt" 的用户 ID(所有者):

<?php
echo fileowner("test.txt");
?>
运行示例 »

定义和用法

fileowner() 函数返回指定文件的用户 ID(所有者)。

提示:使用 posix_getpwuid() 将用户 ID 转换为用户名。

笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。

语法

fileowner( filename)

参数值

Parameter Description
filename Required. Specifies the path to the file to check


技术细节

返回值: 成功时为文件所有者的用户 ID,失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考