1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/bcmath/tests/bcround_error.phpt
2024-07-18 20:44:30 +02:00

22 lines
363 B
PHP

--TEST--
bcround() function with error
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
bcround('hoge');
} catch (Throwable $e) {
echo $e->getMessage()."\n";
}
try {
bcround('0.00.1');
} catch (Throwable $e) {
echo $e->getMessage()."\n";
}
?>
--EXPECT--
bcround(): Argument #1 ($num) is not well-formed
bcround(): Argument #1 ($num) is not well-formed