mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
21 lines
235 B
PHP
21 lines
235 B
PHP
--TEST--
|
|
Bug #25145 (SEGV on recpt of form input with name like "123[]")
|
|
--GET--
|
|
123[]=SEGV
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump($_REQUEST);
|
|
echo "Done\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[123]=>
|
|
array(1) {
|
|
[0]=>
|
|
string(4) "SEGV"
|
|
}
|
|
}
|
|
Done
|