ru_php/ext/bcmath/tests/bcmod_error3.phpt

24 lines
381 B
Plaintext
Raw Permalink Normal View History

--TEST--
bcmod() requires well-formed values
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
bcmod('a', '1');
} catch (\ValueError $e) {
echo $e->getMessage() . PHP_EOL;
}
try {
bcmod('1', 'a');
} catch (\ValueError $e) {
echo $e->getMessage() . PHP_EOL;
}
?>
--EXPECT--
bcmod(): Argument #1 ($num1) is not well-formed
bcmod(): Argument #2 ($num2) is not well-formed