您现在的位置是:首页 > PHP函数

李清波 2015-09-30 PHP函数 1767 复制当前网址

fileowner



PHP fileowner() 函数

定义和用法

fileowner() 函数返回文件的所有者。

若成功,则返回文件所有的用户 ID。若失败,则返回 false。用户 ID 以数字格式返回。


语法

fileowner(filename)

参数描述
filename必需。规定要检查的文件。


提示和注释

提示:本函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。

提示:用户 ID 以数字格式返回,请使用 posix_getpwuid() 来把用户 ID 转换为用户名。


例子

<?php
echo fileowner("test.txt");
?>



文章来源:http://liqingbo.com/blog-597.html

上一篇:fileperms

下一篇:filemtime

评论