1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/e_strict-deprecated.phpt

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)