1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/ext/bcmath/tests/number/operators/mod_object.phpt
T
Saki Takamachi fad899e566 [RFC] Support object types in BCMath (#13741)
Added BcMath\Number class. It is an immutable object, has methods that are
equivalent to existing BCMath calculation functions, and can also be calculated
using operators.

The existing BCMath function returned a string for each calculation, but this
class returns an object.

RFC: https://wiki.php.net/rfc/support_object_type_in_bcmath,
https://wiki.php.net/rfc/fix_up_bcmath_number_class

---------

Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
2024-09-04 11:12:51 +09:00

155 lines
2.0 KiB
PHP

--TEST--
BcMath\Number mod object by operator
--EXTENSIONS--
bcmath
--FILE--
<?php
$values = [
100,
'-20',
'0.01',
'-0.40',
];
foreach ($values as $value1) {
$num1 = new BcMath\Number($value1);
foreach ($values as $value2) {
echo "{$value1} % {$value2}\n";
$num2 = new BcMath\Number($value2);
$ret = $num1 % $num2;
var_dump($ret);
echo "\n";
}
}
?>
--EXPECT--
100 % 100
object(BcMath\Number)#3 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
100 % -20
object(BcMath\Number)#2 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
100 % 0.01
object(BcMath\Number)#4 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
100 % -0.40
object(BcMath\Number)#3 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
-20 % 100
object(BcMath\Number)#2 (2) {
["value"]=>
string(3) "-20"
["scale"]=>
int(0)
}
-20 % -20
object(BcMath\Number)#1 (2) {
["value"]=>
string(1) "0"
["scale"]=>
int(0)
}
-20 % 0.01
object(BcMath\Number)#3 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
-20 % -0.40
object(BcMath\Number)#2 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
0.01 % 100
object(BcMath\Number)#1 (2) {
["value"]=>
string(4) "0.01"
["scale"]=>
int(2)
}
0.01 % -20
object(BcMath\Number)#4 (2) {
["value"]=>
string(4) "0.01"
["scale"]=>
int(2)
}
0.01 % 0.01
object(BcMath\Number)#2 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
0.01 % -0.40
object(BcMath\Number)#1 (2) {
["value"]=>
string(4) "0.01"
["scale"]=>
int(2)
}
-0.40 % 100
object(BcMath\Number)#4 (2) {
["value"]=>
string(5) "-0.40"
["scale"]=>
int(2)
}
-0.40 % -20
object(BcMath\Number)#3 (2) {
["value"]=>
string(5) "-0.40"
["scale"]=>
int(2)
}
-0.40 % 0.01
object(BcMath\Number)#1 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}
-0.40 % -0.40
object(BcMath\Number)#4 (2) {
["value"]=>
string(4) "0.00"
["scale"]=>
int(2)
}