|
posix_getgrnamReturn info about a group by name Description
arrayfalse posix_getgrnam(string
$name )Gets information about a group provided its name. Parameters
Return Values
Returns an array on success, or
Examples
Example #1 Example use of posix_getgrnam
The above example will output something similar to: Array ( [name] => toons [passwd] => x [members] => Array ( [0] => tom [1] => jerry ) [gid] => 42 ) See Also
|