ru_php/Zend/tests/e_strict-deprecated.phpt

15 lines
236 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 since 8.4, the error level was removed in %s on line %d
int(2048)