filegroup: Gets file group : File Property « File Directory « PHP
- PHP
- File Directory
- File Property
filegroup: Gets file group
<?php
$gid = filegroup("/etc/passwd");
// Returns "0" on Unix, because root usually has GID of 0.
echo $gid;
?>
Related examples in the same category