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>
16 lines
268 B
PHP
16 lines
268 B
PHP
--TEST--
|
|
#[\Deprecated]: Message from constant.
|
|
--FILE--
|
|
<?php
|
|
|
|
#[\Deprecated(DEPRECATION_MESSAGE)]
|
|
function test() {
|
|
}
|
|
|
|
define('DEPRECATION_MESSAGE', 'from constant');
|
|
|
|
test();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function test() is deprecated, from constant in %s on line %d
|