23 lines
393 B
PHP
23 lines
393 B
PHP
--TEST--
|
|
QM_ASSIGN of undef var may throw exception
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
opcache.jit_buffer_size=1M
|
|
--FILE--
|
|
<?php
|
|
set_error_handler(function($_, $m) { throw new Exception($m); });
|
|
function test() {
|
|
$a = $b;
|
|
X;
|
|
}
|
|
try {
|
|
test();
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Undefined variable $b
|