当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > chgrp() 函数
The chgrp() function changes the usergroup of the specified file.
chgrp()函数的作用是:改变指定文件所属的组。
Returns TRUE on success and FALSE on failure.
函数执行成功返回True,执行失败返回False。
chgrp(file,group) |
Parameter 参数 | Description 描述 |
---|---|
file | Required. Specifies the file to check 必要参数。指定文件对象 |
group | Required. Specifies the new group. Can be a group name or a group ID 必要参数。指定一个新的group[群]。可以是一个group名称或group ID |
<?php chgrp("test.txt","admin") ?> |