php-src/Zend/tests/attributes/deprecated/functions/deprecated_handler_001.phpt
Benjamin Eberlei 72c874691b
RFC: Add #[\Deprecated] Attribute (#11293)
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>
2024-07-02 09:44:25 +02:00

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