PHP/File Directory/chown — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:04, 26 мая 2010
Changing file owner and group
<?php
chown("/tmp/myfile.txt","sklar"); // specify user by name
chgrp("/home/sklar/schedule.txt","soccer"); // specify group by name
chown("/tmp/myfile.txt",5001); // specify user by uid
chgrp("/home/sklar/schedule.txt",102); // specify group by gid
?>