ZetCode

PHP lchgrp Function

last modified April 3, 2025

The PHP lchgrp function changes the group ownership of a symbolic link. Unlike chgrp, it operates on the link itself, not the target.

Basic Definition

The lchgrp function changes the group of a symbolic link. It takes two parameters: the link path and the group name or ID.

Syntax: lchgrp(string $filename, string|int $group): bool. Returns true on success, false on failure. Requires appropriate permissions.

Basic lchgrp Example

This shows the simplest usage of lchgrp to change a symlink's group.

basic_lchgrp.php
<?php

declare(strict_types=1);

$link = "/var/www/html/mylink";
$group = "www-data";

if (lchgrp($link, $group)) {
    echo "Group changed successfully";
} else {
    echo "Failed to change group";
}

This changes the group of "mylink" to "www-data". The script must have sufficient permissions to modify the symlink's group ownership.

Using Group ID Instead of Name

You can specify the group either by name or by numerical group ID.

lchgrp_gid.php
<?php

declare(strict_types=1);

$link = "/var/www/html/mylink";
$gid = 33; // Typically www-data's GID

if (lchgrp($link, $gid)) {
    echo "Group changed successfully";
} else {
    echo "Failed to change group";
}

This uses the numerical group ID instead of the group name. The GID 33 often corresponds to www-data on Debian-based systems.

Error Handling Example

Proper error handling is important when working with filesystem functions.

error_handling.php
<?php

declare(strict_types=1);

$link = "/nonexistent/link";
$group = "www-data";

if (!file_exists($link)) {
    die("Link does not exist");
}

if (!is_link($link)) {
    die("Path is not a symbolic link");
}

if (!lchgrp($link, $group)) {
    die("Failed to change group: " . error_get_last()['message']);
}

echo "Group changed successfully";

This checks if the link exists and is actually a symlink before attempting to change its group. It also provides detailed error messages on failure.

Checking Current Group

You can verify the current group ownership before changing it.

check_group.php
<?php

declare(strict_types=1);

$link = "/var/www/html/mylink";
$group = "www-data";

$current = posix_getgrgid(filegroup($link));

echo "Current group: " . $current['name'] . "\n";

if (lchgrp($link, $group)) {
    $new = posix_getgrgid(filegroup($link));
    echo "New group: " . $new['name'];
}

This shows the current group before changing it and verifies the change afterwards. Note that filegroup follows symlinks by default.

Changing Group Recursively

This example changes group for all symlinks in a directory.

recursive_lchgrp.php
<?php

declare(strict_types=1);

$directory = "/var/www/html/links";
$group = "www-data";

$iterator = new RecursiveIteratorIterator(
    new RecursiveDirectoryIterator($directory)
);

foreach ($iterator as $file) {
    if ($file->isLink()) {
        if (!lchgrp($file->getPathname(), $group)) {
            echo "Failed to change group for " . $file->getPathname() . "\n";
        }
    }
}

echo "Group change completed for all symlinks";

This recursively processes all symlinks in a directory and its subdirectories. Each symlink's group is changed to www-data. Errors are reported but don't stop the process.

Best Practices

Source

PHP lchgrp Documentation

This tutorial covered the PHP lchgrp function with practical examples showing its usage in different scenarios.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all PHP Filesystem Functions.