27th May 2006. Notice that the following BCMATH program shows that one has to use the bccomp() function in conditionals:
<?php
$test1="100000000000001415402032694799700273500898";
$test2="100000000000001421659378396209449729633403";
if($test1 > $test2){
echo "$test1 > $test2";
}
if($test1 == $test2){
echo "$test1 = $test2";
}
if($test1 < $test2){
echo "$test1 < $test2";
}
?>
The program produces output
100000000000001415402032694799700273500898 = 100000000000001421659378396209449729633403
I will now have to start the tedious task of changing back to using bccomp().