chgrp() 函數可用於更改文件組。
用法
bool chgrp ( string filename, mixed group )
上述函數試圖將 file:filename 的組更改為組。隻有超級用戶可以任意更改文件的組,其他用戶可以將文件的組更改為該用戶所屬的任何組。此函數可以在成功時返回 TRUE 或在失敗時返回 FALSE。
示例
<?php
$filename = "/PhpProject/sample.txt";
$format = "%s's Group ID @ %s:%d\n";
printf($format, $filename, date('r'), filegroup($filename));
chgrp($filename, "admin");
clearstatcache(); // do not cache filegroup() results
printf($format, $filename, date('r'), filegroup($filename));
?>
輸出
/PhpProject/sample.txt's Group ID @ Fri, 22 May 2020 07:42:21 +0200:0 /PhpProject/sample.txt's Group ID @ Fri, 22 May 2020 07:42:21 +0200:0
相關用法
- PHP chgrp( )用法及代碼示例
- PHP chroot()用法及代碼示例
- PHP chdir()用法及代碼示例
- PHP chroot( )用法及代碼示例
- PHP chunk_split()用法及代碼示例
- PHP chown( )用法及代碼示例
- PHP chop()用法及代碼示例
- PHP checkdate()用法及代碼示例
- PHP checkdnsrr()用法及代碼示例
- PHP chown()用法及代碼示例
- PHP chmod()用法及代碼示例
- PHP chmod( )用法及代碼示例
- PHP chr()用法及代碼示例
- PHP crypt(), password_hash()用法及代碼示例
- PHP ctype_xdigit()用法及代碼示例
- PHP closedir( )用法及代碼示例
- PHP ctype_punct()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP ceil()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function chgrp()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。