1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
--TEST-- bcscale() return value --SKIPIF-- <?php if(!extension_loaded("bcmath")) print "skip"; ?> --INI-- bcmath.scale=0 --FILE-- <?php var_dump(bcscale(1)); var_dump(bcscale(4)); var_dump(bcscale()); var_dump(bcscale()); ?> --EXPECT-- int(0) int(1) int(4) int(4)