目录

PHP chgrp() 函数

❮ PHP 文件系统参考

示例

将 "test.txt" 文件的用户组更改为 "admin":

<?php
chgrp("test.txt","admin")
?>


定义和用法

chgrp() 函数更改指定文件的用户组。

语法

chgrp( file, group)

参数值

Parameter Description
file Required. Specifies the path to the file to change user group for
group Required. Specifies the new group name or number


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+

❮ PHP 文件系统参考