summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bccomp_variation001.phpt
blob: f8ca5b9da59b0aa74af8f0062549cc4b5fc4e7bf (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