This example will print out the real group id, even once the effective
group id has been changed.
<?php
echo 'My real group id is '.posix_getgid(); posix_setegid(40);
echo 'My real group id is '.posix_getgid(); echo 'My effective group id is '.posix_getegid(); ?>