Display the text box

posix_getgid()

« posix_geteuid | posix_getgrgid »
<?php
$int 
posix_getgid ();

// shows the group information
if ($int !== false and function_exists("posix_getgrgid")) {
    
$array posix_getgrgid($int);
}
?>
Result
$int = '353'
$array = [
  
'name' => 'qasda',
  
'passwd' => 'c',
  
'members' => [
  ],
  
'gid' => '353',
]
PBX notice : the result is hashed with pbx_hash for security reasons.
Examples
#1 posix_getgid  ()
See also
function_exists, getmygid, pbx_hash, posix_getegid, posix_getgrgid