|
posix_getgrgidReturn info about a group by group id Description
arrayfalse posix_getgrgid(int
$group_id )Gets information about a group provided its id. Parameters
Return ValuesThe array elements returned are:
false on failure.
Examples
Example #1 Example use of posix_getgrgid
The above example will output something similar to: Array ( [name] => toons [passwd] => x [members] => Array ( [0] => tom [1] => jerry ) [gid] => 42 ) See Also
|