--TEST-- Test function get_cfg_var() by substituting argument 1 with boolean values. --CREDITS-- Francesco Fullone ff@ideato.it #PHPTestFest Cesena Italia on 2009-06-20 --INI-- session.use_cookies=0 session.serialize_handler=php session.save_handler=files --FILE-- true, 'lowercase false' =>false, 'uppercase TRUE' =>TRUE, 'uppercase FALSE' =>FALSE, ); foreach ( $variation_array as $var ) { var_dump(get_cfg_var( $var ) ); } ?> --EXPECTF-- *** Test substituting argument 1 with boolean values *** bool(false) bool(false) bool(false) bool(false)