--TEST-- Test function posix_setgid() by substituting argument 1 with boolean values. --SKIPIF-- --CREDITS-- Marco Fabbri mrfabbri@gmail.com Francesco Fullone ff@ideato.it #PHPTestFest Cesena Italia on 2009-06-20 --FILE-- true, 'lowercase false' =>false, 'uppercase TRUE' =>TRUE, 'uppercase FALSE' =>FALSE, ); foreach ( $variation_array as $var ) { var_dump(posix_setgid( $var ) ); } ?> ===DONE=== --EXPECTF-- *** Test substituting argument 1 with boolean values *** bool(false) bool(false) bool(false) bool(false) ===DONE===