PHP fileowner函数——返回文件拥有者的ID,fileowner函数可返回指定文件拥有者的ID,如果出错则返回false。
PHP fileowner函数 语法
int fileowner(string filename)
参数filename用于指定某文件的路径及名称。
PHP fileowner函数 示例
本示例应用fileowner()函数返回Linux下“/usr/local/index.php”文件的所有者ID
代码如下:
<?php
echo fileowner("/usr/local/index.php");
?>