1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
--TEST--
BcMath\Number div int by operator
--EXTENSIONS--
bcmath
--FILE--
<?php
$values = [
100,
'-20',
3,
];
foreach ($values as $value1) {
$num1 = new BcMath\Number($value1);
foreach ($values as $value2) {
echo "{$value1} / {$value2}\n";
$ret = $num1 / ((int) $value2);
$ret2 = ((int) $value1) / (new BcMath\Number($value2));
if ($ret->compare($ret2) !== 0) {
echo "Result is incorrect.\n";
}
var_dump($ret);
echo "\n";
}
}
?>
--EXPECT--
100 / 100
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "1"
["scale"]=>
int(0)
}
100 / -20
object(BcMath\Number)#3 (2) {
["value"]=>
string(2) "-5"
["scale"]=>
int(0)
}
100 / 3
object(BcMath\Number)#4 (2) {
["value"]=>
string(13) "33.3333333333"
["scale"]=>
int(10)
}
-20 / 100
object(BcMath\Number)#1 (2) {
["value"]=>
string(4) "-0.2"
["scale"]=>
int(1)
}
-20 / -20
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "1"
["scale"]=>
int(0)
}
-20 / 3
object(BcMath\Number)#3 (2) {
["value"]=>
string(13) "-6.6666666666"
["scale"]=>
int(10)
}
3 / 100
object(BcMath\Number)#5 (2) {
["value"]=>
string(4) "0.03"
["scale"]=>
int(2)
}
3 / -20
object(BcMath\Number)#1 (2) {
["value"]=>
string(5) "-0.15"
["scale"]=>
int(2)
}
3 / 3
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "1"
["scale"]=>
int(0)
}
|