bcpowmod_error.phpt 565 B

123456789101112131415161718192021222324252627282930
  1. --TEST--
  2. bcpowmod() requires well-formed values
  3. --EXTENSIONS--
  4. bcmath
  5. --FILE--
  6. <?php
  7. try {
  8. bcpowmod('a', '1', '1');
  9. } catch (\ValueError $e) {
  10. echo $e->getMessage() . PHP_EOL;
  11. }
  12. try {
  13. bcpowmod('1', 'a', '1');
  14. } catch (\ValueError $e) {
  15. echo $e->getMessage() . PHP_EOL;
  16. }
  17. try {
  18. bcpowmod('1', '1', 'a');
  19. } catch (\ValueError $e) {
  20. echo $e->getMessage() . PHP_EOL;
  21. }
  22. ?>
  23. --EXPECT--
  24. bcpowmod(): Argument #1 ($num) is not well-formed
  25. bcpowmod(): Argument #2 ($exponent) is not well-formed
  26. bcpowmod(): Argument #3 ($modulus) is not well-formed