bcdiv_error1.phpt 302 B

123456789101112131415161718
  1. --TEST--
  2. bcdiv — Divide two arbitrary precision numbers
  3. --CREDITS--
  4. TestFest2009
  5. Antoni Torrents
  6. antoni@solucionsinternet.com
  7. --EXTENSIONS--
  8. bcmath
  9. --FILE--
  10. <?php
  11. try {
  12. bcdiv('10.99', '0');
  13. } catch (DivisionByZeroError $ex) {
  14. echo $ex->getMessage(), PHP_EOL;
  15. }
  16. ?>
  17. --EXPECT--
  18. Division by zero