(PHP 5 >= 5.1.2)
lchgrp — Changes group ownership of symlink
Attempts to change the group of the symlink filename
to group
.
Only the superuser may change the group of a symlink arbitrarily; other users may change the group of a symlink to any group of which that user is a member.
filename
Path to the symlink.
group
The group specified by name or number.
Retorna TRUE
em caso de sucesso ou FALSE
em caso de falha.
Exemplo #1 Changing the group of a symbolic link
<?php
$target = 'output.php';
$link = 'output.html';
symlink($target, $link);
lchgrp($link, 8);
?>
Nota: Esta função não trabalha com arquivos remotos, de forma que o arquivo a ser examinado precisa ser acessível pelo sistema de arquivos do servidor.
Nota: Quando o safe-mode está ativo, o PHP verifica se os arquivo(s) ou diretórios que estão usados na operação tem o mesmo UID (proprietário) do script que está sendo executado.
Nota: esta função não é implementada na plataforma Windows