chown() 函數可以更改指定文件的所有者。
用法
bool chown ( string filename, mixed user )
嘗試將文件的所有者:文件名更改為用戶(由名稱或編號指定),並且隻有超級用戶可以更改文件的所有者。此函數在成功時返回 true,否則在失敗時返回 false。
示例
<?php
// File name and username to use
$file_name= "index.php";
$path = "/PhpProject/backup:" . $file_name ;
$user_name = "root";
// Set the user
chown($path, $user_name);
print_r($path);
?>
輸出
/PhpProject/backup:index.php
相關用法
- PHP chown()用法及代碼示例
- 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 - Function chown()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。