filegroup
(PHP 4, PHP 5)
filegroup — Gets file group
Descrierea
Gets the file group. The group ID is returned in numerical format, use posix_getgrgid() to resolve it to a group name.
Parametri
- filename
-
Path to the file.
Valorile întroarse
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.
Exemple
Example #1 Finding the group of a file
<?php
$filename = 'index.php';
print_r(posix_getgrgid(filegroup($filename)));
?>
Erori/Excepţii
Upon failure, an E_WARNING is emitted.
Note
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().
Vedeţi de asemenea
- fileowner() - Gets file owner
- posix_getgrgid() - Return info about a group by group id
- safe_mode_gid
filegroup
