mirror of
https://github.com/php/php-src.git
synced 2026-03-28 02:02:32 +01:00
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
19 lines
302 B
PHP
19 lines
302 B
PHP
--TEST--
|
|
bcdiv — Divide two arbitrary precision numbers
|
|
--CREDITS--
|
|
TestFest2009
|
|
Antoni Torrents
|
|
antoni@solucionsinternet.com
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
bcdiv('10.99', '0');
|
|
} catch (DivisionByZeroError $ex) {
|
|
echo $ex->getMessage(), PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Division by zero
|