下面一個函數是chown相關資訊哦,好了費話不說了來看看吧。
chown
(在 PHP 4中, PHP 5中)
chown-更改文件所有者
描述
布爾chown(字符串$文件名,混合$用戶)
企圖更改檔案的擁有者檔案到用戶的用戶。只有Supervisor可以改變人的檔案。
參數
檔案名稱
檔案路徑。
用戶
用戶名或號碼。
回傳值
回傳TRUE或FALSE的成功失敗。
實例
// File name and username to use
$file_name= "foo.php";
$path = "/homefile/sites/php.net/public_html/sandbox";
$path = "/homefile/sites/php.net/public_html/sandbox";
// Set the user
// Check the result
$stat = stat($path);
?>
array(7) {
["name"]=>
string(13) "php "]=>
string(1) "x"
["uid"]=>
int(148864)
["gid"]=>
int(148910)
["ge ) "php.net"
["dir"]=>
string(25) "/home/sites/php.net"
["shell"]=>
string(13) "/sbin/nologin"
}
以上就是chown()函數實例教學的內容,更多相關文章請關注PHP中文網(www.php.cn)!