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