php-src/Zend/tests/bug51791.phpt
2020-07-10 21:05:28 +02:00

18 lines
267 B
PHP

--TEST--
Bug #51791 (constant() failed to check undefined constant and php interpreter stopped)
--FILE--
<?php
class A {
const B = 1;
}
try {
constant('A::B1');
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Undefined constant A::B1