--TEST-- bcdiv — Divide two arbitrary precision numbers --CREDITS-- TestFest2009 Antoni Torrents antoni@solucionsinternet.com --EXTENSIONS-- bcmath --FILE-- getMessage(), PHP_EOL; } try { bcdiv('10.99', '0.00'); } catch (DivisionByZeroError $ex) { echo $ex->getMessage(), PHP_EOL; } try { bcdiv('10.99', '-0.00'); } catch (DivisionByZeroError $ex) { echo $ex->getMessage(), PHP_EOL; } ?> --EXPECT-- Division by zero Division by zero Division by zero