php-src/Zend/tests/attributes/deprecated/functions/deprecated_handler_003.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

22 lines
417 B
PHP

--TEST--
#[\Deprecated]: Error Handler is deprecated.
--FILE--
<?php
#[\Deprecated]
function my_error_handler(int $errno, string $errstr, ?string $errfile = null, ?int $errline = null) {
echo $errstr, PHP_EOL;
};
set_error_handler('my_error_handler');
#[\Deprecated]
function test() {
}
test();
?>
--EXPECTF--
Deprecated: Function my_error_handler() is deprecated in %s on line %d
Function test() is deprecated