mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
Files
fce0cd4a883f48e875c3ea227e15fde7bda5aa4d
T
30 lines
582 B
PHP
30 lines
582 B
PHP
--TEST--
|
|
Bug #63206 Fully support error_handler stacking, even inside the error_handler
|
|
--FILE--
|
|
<?php
|
|
|
|
set_error_handler(function() {
|
|
echo 'First handler' . PHP_EOL;
|
|
});
|
|
|
|
set_error_handler(function() {
|
|
echo 'Second handler' . PHP_EOL;
|
|
|
|
set_error_handler(function() {
|
|
echo 'Internal handler' . PHP_EOL;
|
|
});
|
|
|
|
$triggerInternalNotice++; // warnings while handling the error should go into internal handler
|
|
|
|
restore_error_handler();
|
|
});
|
|
|
|
$triggerNotice1++;
|
|
$triggerNotice2++;
|
|
?>
|
|
--EXPECT--
|
|
Second handler
|
|
Internal handler
|
|
Second handler
|
|
Internal handler
|