mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
RFC: https://wiki.php.net/rfc/deprecations_php_8_4#remove_e_strict_error_level_and_deprecate_e_strict_constant Closes GH-13053
15 lines
197 B
PHP
15 lines
197 B
PHP
--TEST--
|
|
The E_STRICT constant is deprecated
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(E_ALL);
|
|
var_dump(E_STRICT);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
int(30719)
|
|
|
|
Deprecated: Constant E_STRICT is deprecated in %s on line %d
|
|
int(2048)
|