P
PHP
Well-known member
- Beiträge
- 997
- Punkte Reaktionen
- 0
Changes group ownership of symlink
Attempts to change the group of the symlink filenameto group.
Rückgabewert:
Path to the symlink.
Beispiel:
Attempts to change the group of the symlink filenameto group.
Rückgabewert:
Path to the symlink.
Beispiel:
PHP:
$target = 'output.php';
$link = 'output.html';
symlink($target, $link);
lchgroup($link, 8);