29 lines
793 B
PHP
29 lines
793 B
PHP
--TEST--
|
|
Inc/dec on bool: warning converted to exception
|
|
--FILE--
|
|
<?php
|
|
|
|
set_error_handler(function($severity, $m) {
|
|
throw new Exception($m, $severity);
|
|
});
|
|
|
|
$values = [false, true];
|
|
foreach ($values as $value) {
|
|
try {
|
|
$value++;
|
|
} catch (\Exception $e) {
|
|
echo $e->getMessage(), PHP_EOL;
|
|
}
|
|
try {
|
|
$value--;
|
|
} catch (\Exception $e) {
|
|
echo $e->getMessage(), PHP_EOL;
|
|
}
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Increment on type bool has no effect, this will change in the next major version of PHP
|
|
Decrement on type bool has no effect, this will change in the next major version of PHP
|
|
Increment on type bool has no effect, this will change in the next major version of PHP
|
|
Decrement on type bool has no effect, this will change in the next major version of PHP
|