目录

PHP chown() 函数

❮ PHP 文件系统参考

示例

更改 "test.txt" 文件的所有者:

<?php
chown("test.txt","charles")
?>


定义和用法

chown() 函数更改指定文件的所有者。

语法

chown( file, owner)

参数值

Parameter Description
file Required. Specifies the path to the file to change owner for
owner Required. Specifies the new owner. Can be a user name or a user ID.


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+

❮ PHP 文件系统参考