compound_assign_with_numeric_strings.phpt 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --TEST--
  2. Error cases of compound shift assignment on strings
  3. --FILE--
  4. <?php
  5. $n = "65";
  6. $n <<= $n;
  7. var_dump($n);
  8. $n = "-1";
  9. try {
  10. $n <<= $n;
  11. var_dump($n);
  12. } catch (ArithmeticError $e) {
  13. echo "\nException: " . $e->getMessage() . "\n";
  14. }
  15. $n = "65";
  16. $n >>= $n;
  17. var_dump($n);
  18. $n = "-1";
  19. try {
  20. $n >>= $n;
  21. var_dump($n);
  22. } catch (ArithmeticError $e) {
  23. echo "\nException: " . $e->getMessage() . "\n";
  24. }
  25. $n = "0";
  26. try{
  27. $n %= $n;
  28. var_dump($n);
  29. } catch (DivisionByZeroError $e) {
  30. echo "\nException: " . $e->getMessage() . "\n";
  31. }
  32. $n = "-1";
  33. $n %= $n;
  34. var_dump($n);
  35. --EXPECT--
  36. int(0)
  37. Exception: Bit shift by negative number
  38. int(0)
  39. Exception: Bit shift by negative number
  40. Exception: Modulo by zero
  41. int(0)