(PHP 4, PHP 5)
filegroup — Gets file group
Gets the file group. The group ID is returned in numerical format, use posix_getgrgid() to resolve it to a group name.
Path to the file.
Returns the group ID of the file, or FALSE in case of an error. The group ID is returned in numerical format, use posix_getgrgid() to resolve it to a group name. Upon failure, FALSE is returned.
Example #1 Finding the group of a file
<?php
$filename = 'index.php';
print_r(posix_getgrgid(filegroup($filename)));
?>
Upon failure, an E_WARNING is emitted.
Notă: Rezultatele acestei funcții sunt stocate în cache. Accesați clearstatcache() pentru mai multe detalii.
Începând cu PHP 5.0.0 această funcție poate fi utilizată de asemenea cu unele învelișuri URL. Referiți-vă la List of Supported Protocols/Wrappers pentru lista învelișurilor care susțin familia de funcționalitate stat().