目录

PHP filegroup() 函数

❮ PHP 文件系统参考

示例

返回"test.txt"的组ID:

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

定义和用法

filegroup() 函数返回文件的组 ID。

提示:使用 posix_getgrgid() 函数将组 ID 转换为组名称。

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

语法

filegroup( filename)

参数值

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


技术细节

返回值: 成功时文件的组 ID,失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考