PHP chgrp() 函數(shù)
PHP chgrp() 函數(shù)

定義和用法
chgrp() 函數(shù)改變指定文件的用戶組。
如果成功則返回 TRUE,如果失敗則返回 FALSE。
語(yǔ)法
chgrp(file,group)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
group | 可選。規(guī)定新的組。可以是組名或組的 ID。 |
實(shí)例
<?php
chgrp("test.txt","admin")
?>
chgrp("test.txt","admin")
?>

相關(guān)文章
- PHP EOF(heredoc) 使用說(shuō)明
- PHP While 循環(huán)
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP 面向?qū)ο?/a>
- PHP 文件上傳
- PHP 高級(jí)過(guò)濾器
- PHP array_diff() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP key() 函數(shù)
- PHP natsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP uasort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)