--TEST-- Test reading bit boolean parameters and casts to boolean types. --DESCRIPTION-- This test verifies that bit boolean parameters are read correctly and output 1 or 0 as appropriate. The expected outputs consist of a true value as a bit, false as a bit, a true value cast to a bit, a true value as an int, true, false, and a true directly cast to a bit. --ENV-- PHPT_EXEC=true --SKIPIF-- --FILE-- --EXPECT-- object(stdClass)#1 (7) { ["bit_true"]=> int(1) ["bit_false"]=> int(0) ["bit_cast_true"]=> int(1) ["int_true"]=> int(1) ["direct_true"]=> int(1) ["direct_false"]=> int(0) ["direct_bit_cast_true"]=> int(1) }