(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);
?>