TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
218 B

--TEST--
Bug #77439: parse_str segfaults when inserting item into existing array
--FILE--
<?php
$vars = ['a' => []];
parse_str('a[1]=1', $vars);
var_dump($vars['a']);
?>
--EXPECT--
array(1) {
[1]=>
string(1) "1"
}