« PHP:rename()関数 | メイン | PHP:chmod()関数 »
2006年06月02日
PHP:chgrp()関数
chgrp()関数は、引数に指定したファイルの所属グループを変更します。
$filePath = 'index.html';
chgrp($filePath, 'test');
※上記の結果、index.htmlを「test」グループに変更します。
投稿者 wing : 2006年06月02日 00:46
|
« PHP:rename()関数 | メイン | PHP:chmod()関数 » 2006年06月02日PHP:chgrp()関数chgrp()関数は、引数に指定したファイルの所属グループを変更します。 $filePath = 'index.html'; ※上記の結果、index.htmlを「test」グループに変更します。 投稿者 wing : 2006年06月02日 00:46
コメント |
|