mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

see https://wiki.php.net/rfc/deprecated_attribute Co-authored-by: Tim Düsterhus <tim@tideways-gmbh.com> Co-authored-by: Ilija Tovilo <ilija.tovilo@me.com>
18 lines
361 B
PHP
18 lines
361 B
PHP
--TEST--
|
|
#[\Deprecated]: Exception Handler is deprecated.
|
|
--FILE--
|
|
<?php
|
|
|
|
#[\Deprecated]
|
|
function my_exception_handler($e) {
|
|
echo "Handled: ", $e->getMessage(), PHP_EOL;
|
|
};
|
|
|
|
set_exception_handler('my_exception_handler');
|
|
|
|
throw new \Exception('test');
|
|
|
|
?>
|
|
--EXPECT--
|
|
Deprecated: Function my_exception_handler() is deprecated in Unknown on line 0
|
|
Handled: test
|