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>
22 lines
417 B
PHP
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
|