chown() 函數更改文件所有者。為任何文件設置新的所有者。此函數不適用於遠程文件。
用法
chown($file_path, $user );
參數
file_path −設置要檢查的文件或目錄的路徑。必需的。
user −設置新的所有者名稱或 ID。
返回
chown() 方法返回。
- 是的,關於成功
- 錯誤,失敗時
示例
以下是為文件 “demo.txt” 設置新所有者的示例。
<?php
// set new owner
$file_path = "demo.php";
$user = "jack";
chown($file_path, $user);
?>
讓我們看另一個例子,其中為文件 “new.txt” 設置了一個新用戶。
示例
<?php
// set new owner
chown("new.txt","amit");
?>
相關用法
- PHP chown( )用法及代碼示例
- PHP chop()用法及代碼示例
- PHP chgrp()用法及代碼示例
- PHP chroot()用法及代碼示例
- PHP chdir()用法及代碼示例
- PHP chroot( )用法及代碼示例
- PHP chgrp( )用法及代碼示例
- PHP chunk_split()用法及代碼示例
- PHP checkdate()用法及代碼示例
- PHP checkdnsrr()用法及代碼示例
- PHP chmod()用法及代碼示例
- PHP chmod( )用法及代碼示例
- PHP chr()用法及代碼示例
- PHP crypt(), password_hash()用法及代碼示例
- PHP ctype_xdigit()用法及代碼示例
- PHP closedir( )用法及代碼示例
- PHP ctype_punct()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP ceil()用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 chown() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。