mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_passing_e_user_error_to_trigger_error
35 lines
736 B
PHP
35 lines
736 B
PHP
--TEST--
|
|
Observer: End handlers fire after a userland fatal error
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--INI--
|
|
zend_test.observer.enabled=1
|
|
zend_test.observer.show_output=1
|
|
zend_test.observer.observe_all=1
|
|
zend_test.observer.show_return_value=1
|
|
--FILE--
|
|
<?php
|
|
function foo()
|
|
{
|
|
trigger_error('Foo error', E_USER_ERROR);
|
|
}
|
|
|
|
foo();
|
|
|
|
echo 'You should not see this.';
|
|
?>
|
|
--EXPECTF--
|
|
<!-- init '%s' -->
|
|
<file '%s'>
|
|
<!-- init foo() -->
|
|
<foo>
|
|
<!-- init trigger_error() -->
|
|
<trigger_error>
|
|
|
|
Deprecated: Passing E_USER_ERROR to trigger_error() is deprecated since 8.4, throw an exception or call exit with a string message instead in %s on line %d
|
|
|
|
Fatal error: Foo error in %s on line %d
|
|
</trigger_error:NULL>
|
|
</foo:NULL>
|
|
</file '%s'>
|