PHP lchown May 12, 2012 Pramod T P It changes user ownership of symlink Example <?php $target = ‘test.php’; $link = ‘test’; symlink($target, $link); lchown($link, 8); ?>