summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bccomp_variation001.phpt
blob: 9eff0dd33aac8c6ef03d4e786a9591628877d43a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
bccomp() with non-integers
--SKIPIF--
<?php if(!extension_loaded("bcmath")) print "skip"; ?>
--INI--
bcmath.scale=0
--FILE--
<?php
echo bccomp("2.2", "2.2", "2")."\n";
echo bccomp("2.32", "2.2", "2")."\n";
echo bccomp("2.29", "2.3", "2");
?>
--EXPECT--
0
1
-1