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 mod int by operator
--EXTENSIONS--
bcmath
--FILE--
<?php
$values = [
100,
'-20',
9,
];
foreach ($values as $value1) {
$num1 = new BcMath\Number($value1);
foreach ($values as $value2) {
echo "{$value1} % {$value2}\n";
$ret = $num1 % ((int) $value2);
$ret2 = ((string) $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) "0"
["scale"]=>
int(0)
}
100 % -20
object(BcMath\Number)#3 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
100 % 9
object(BcMath\Number)#4 (2) {
["value"]=>
string(1) "1"
["scale"]=>
int(0)
}
-20 % 100
object(BcMath\Number)#1 (2) {
["value"]=>
string(3) "-20"
["scale"]=>
int(0)
}
-20 % -20
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
-20 % 9
object(BcMath\Number)#3 (2) {
["value"]=>
string(2) "-2"
["scale"]=>
int(0)
}
9 % 100
object(BcMath\Number)#5 (2) {
["value"]=>
string(1) "9"
["scale"]=>
int(0)
}
9 % -20
object(BcMath\Number)#1 (2) {
["value"]=>
string(1) "9"
["scale"]=>
int(0)
}
9 % 9
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
|