mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

When opcache is enabled, error handling is altered in the following ways: * Errors emitted during compilation bypass the user-defined error handler * Exceptions emitted during class linking are turned into fatal errors Changes here make the behavior consistent regardless of opcache being enabled or not: * Errors emitted during compilation and class linking are always delayed and handled after compilation or class linking. During handling, user-defined error handlers are not bypassed. Fatal errors emitted during compilation or class linking cause any delayed errors to be handled immediately (without calling user-defined error handlers, as it would be unsafe). * Exceptions thrown by user-defined error handlers when handling class linking error are not promoted to fatal errors anymore and do not prevent linking. Fixes GH-17422. Closes GH-18541. Closes GH-17627. Co-authored-by: Tim Düsterhus <tim@bastelstu.be>
24 lines
736 B
PHP
24 lines
736 B
PHP
--TEST--
|
|
Deprecation promoted to exception during inheritance
|
|
--SKIPIF--
|
|
<?php
|
|
if (getenv('SKIP_PRELOAD')) die('skip Error handler not active during preloading');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
set_error_handler(function($code, $message) {
|
|
throw new Exception($message);
|
|
});
|
|
|
|
$class = new class extends DateTime {
|
|
public function getTimezone() {}
|
|
};
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception: Return type of DateTime@anonymous::getTimezone() should either be compatible with DateTime::getTimezone(): DateTimeZone|false, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): {closure:%s:%d}(8192, 'Return type of ...', '%s', 8)
|
|
#1 {main}
|
|
thrown in %s on line %d
|