php-src/Zend/tests/bug73181.phpt

22 lines
350 B
Plaintext
Raw Normal View History

2016-09-28 01:47:48 +08:00
--TEST--
Bug #73181: parse_str() without a second argument leads to crash
--FILE--
<?php
function x() {
parse_str("1&x");
var_dump(get_defined_vars());
}
x();
?>
--EXPECTF--
Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on line %d
2016-09-28 01:47:48 +08:00
array(2) {
[1]=>
string(0) ""
["x"]=>
string(0) ""
}