1--TEST-- 2Test function posix_setegid() by calling it with its expected arguments 3--EXTENSIONS-- 4posix 5--FILE-- 6<?php 7var_dump(posix_setegid(posix_getegid())); 8?> 9--EXPECT-- 10bool(true) 11