(PHP 4, PHP 5, PHP 7, PHP 8)
chown — 改變文件的所有者
嘗試將文件 filename
的所有者改成用戶(hù)
user
(由用戶(hù)名或用戶(hù) ID 指定)。
只有超級(jí)用戶(hù)可以改變文件的所有者。
filename
文件路徑。
user
用戶(hù)名或數(shù)字。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 簡(jiǎn)單的 chown() 用法
<?php
// File name and username to use
$file_name= "foo.php";
$path = "/home/sites/php.net/public_html/sandbox/" . $file_name ;
$user_name = "root";
// Set the user
chown($path, $user_name);
// Check the result
$stat = stat($path);
print_r(posix_getpwuid($stat['uid']));
?>
以上例程的輸出類(lèi)似于:
Array ( [name] => root [passwd] => x [uid] => 0 [gid] => 0 [gecos] => root [dir] => /root [shell] => /bin/bash )
注意: 此函數(shù)不能作用于遠(yuǎn)程文件,被檢查的文件必須是可通過(guò)服務(wù)器的文件系統(tǒng)訪問(wèn)的。
注意: 在 Windows 上對(duì)普通文件使用此函數(shù)會(huì)靜默失敗。