php-8.0.30-src/Zend/tests/div_by_zero_compound_with_c...

15 lines
261 B
PHP

--TEST--
Division by zero in compound operator with type coercion
--FILE--
<?php
$x = 42;
try {
$$x /= 0;
} catch (DivisionByZeroError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECTF--
Warning: Undefined variable $42 in %s on line %d
Division by zero