(PHP 5 >= 5.1.3, PHP 7)
lchown — �ķ������ӵ�������
�����ķ������� filename
�� ������ user
ֻ�г����û������ķ������ӵ������ߡ�
filename
�ļ�·����
user
���������ƻ���
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #1 Changing the owner of a symbolic link
<?php
$target = 'output.php';
$link = 'output.html';
symlink($target, $link);
lchown($link, 8);
?>