1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/bcmath/tests/bcdivmod_by_zero.phpt
Saki Takamachi f6db576c31 [RFC] ext/bcmath: Added bcdivmod (#15740)
RFC: https://wiki.php.net/rfc/add_bcdivmod_to_bcmath

Added bcdivmod() function and added divmod() method to BcMath\Number class.
2024-09-23 06:43:11 +09:00

67 lines
906 B
PHP

--TEST--
bcdivmod() function div by zero
--EXTENSIONS--
bcmath
--INI--
bcmath.scale=0
--FILE--
<?php
require(__DIR__ . "/run_bcmath_tests_function.inc");
$dividends = [
"15", "-15", "1", "-9", "14.14", "-16.60", "0.15", "-0.01",
"15151324141414.412312232141241",
"-132132245132134.1515123765412",
"141241241241241248267654747412",
"-149143276547656984948124912",
"0.1322135476547459213732911312",
"-0.123912932193769965476541321",
];
$divisors = [
'0',
'0.00',
];
foreach ($dividends as $firstTerm) {
foreach ($divisors as $secondTerm) {
try {
bcdivmod($firstTerm, $secondTerm);
echo "NG\n";
} catch (Error $e) {
echo $e->getMessage() === 'Division by zero' ? 'OK' :'NG';
echo "\n";
}
}
}
?>
--EXPECT--
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK