php-src/Zend/tests/bug54585.phpt

18 lines
326 B
Plaintext
Raw Normal View History

--TEST--
Bug #54585 (track_errors causes segfault)
--INI--
track_errors=On
--FILE--
<?php
function testing($source) {
2017-02-02 20:15:36 +00:00
unset($source[$cos]);
}
testing($_GET);
echo "ok\n";
?>
--EXPECTF--
2017-02-02 20:15:36 +00:00
Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0
Notice: Undefined variable: cos in %sbug54585.php on line 3
ok