mirror of
https://github.com/php/php-src.git
synced 2026-03-30 12:13:02 +02:00
Access to undefined constants will now always result in an Error exception being thrown. This required quite a few test changes, because there were many buggy tests that unintentionally used bareword fallback in combination with error suppression.
21 lines
552 B
PHP
21 lines
552 B
PHP
--TEST--
|
|
Bug #76536 (PHP crashes with core dump when throwing exception in error handler)
|
|
--FILE--
|
|
<?php
|
|
class SomeConstants {const SOME_CONSTANT = "foo" % 5; }
|
|
|
|
function handleError() {throw new ErrorException();}
|
|
|
|
set_error_handler('handleError');
|
|
set_exception_handler('handleError');
|
|
|
|
$r = new \ReflectionClass(SomeConstants::class);
|
|
$r->getConstants();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught ErrorException in %sbug76536.php:%d
|
|
Stack trace:
|
|
#0 [internal function]: handleError(Object(ErrorException))
|
|
#1 {main}
|
|
thrown in %sbug76536.php on line %d
|