php-src/Zend/tests/compound_assign_with_numeric_strings.phpt

51 lines
719 B
Plaintext
Raw Normal View History

--TEST--
Error cases of compound shift assignment on strings
--FILE--
<?php
$n = "65";
$n <<= $n;
var_dump($n);
$n = "-1";
try {
$n <<= $n;
var_dump($n);
2015-07-03 03:18:53 +00:00
} catch (ArithmeticError $e) {
echo "\nException: " . $e->getMessage() . "\n";
}
$n = "65";
$n >>= $n;
var_dump($n);
$n = "-1";
try {
$n >>= $n;
var_dump($n);
2015-07-03 03:18:53 +00:00
} catch (ArithmeticError $e) {
echo "\nException: " . $e->getMessage() . "\n";
}
2015-01-07 22:21:12 +00:00
$n = "0";
try{
$n %= $n;
var_dump($n);
2015-07-03 03:18:53 +00:00
} catch (DivisionByZeroError $e) {
echo "\nException: " . $e->getMessage() . "\n";
}
2015-01-07 22:21:12 +00:00
$n = "-1";
$n %= $n;
var_dump($n);
--EXPECT--
int(0)
Exception: Bit shift by negative number
int(0)
Exception: Bit shift by negative number
2015-01-07 22:21:12 +00:00
Exception: Modulo by zero
2015-01-07 22:21:12 +00:00
int(0)