chown

(PHP 4, PHP 5, PHP 7)

chown�ı��ļ���������

˵��

chown ( string $filename , mixed $user ) : bool

���Խ��ļ� filename �������߸ij��û� user�����û������û� ID ָ������ ֻ�г����û����Ըı��ļ��������ߡ�

����

filename

�ļ�·����

user

�û��������֡�

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 �򵥵� 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']));

?>

�������̵���������ڣ�

Array
(
    [name] => root
    [passwd] => x
    [uid] => 0
    [gid] => 0
    [gecos] => root
    [dir] => /root
    [shell] => /bin/bash
)

ע��

Note: �˺�������������Զ���ļ����������ļ������ǿ�ͨ�����������ļ�ϵͳ���ʵġ�

Note: ������ ��ȫģʽʱ�� PHP ���鱻�������ļ���Ŀ¼�Ƿ��뱻ִ�еĽű�����ͬ�� UID�������ߣ���

�μ�