mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

* Deprecate DOM_PHP_ERR RFC: https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_dom_php_err_constant * Apply suggestions from code review Co-authored-by: Tim Düsterhus <timwolla@googlemail.com> --------- Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
11 lines
202 B
PHP
11 lines
202 B
PHP
--TEST--
|
|
Test deprecation emitted on accessing DOM_PHP_ERR
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
var_dump(DOM_PHP_ERR);
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Constant DOM_PHP_ERR is deprecated in %s on line %d
|
|
int(0)
|