php-src/tests/lang/bug25145.phpt

21 lines
235 B
Plaintext
Raw Normal View History

2003-08-19 22:47:30 +00:00
--TEST--
Bug #25145 (SEGV on recpt of form input with name like "123[]")
--GET--
123[]=SEGV
--FILE--
<?php
2003-08-29 09:05:11 +00:00
var_dump($_REQUEST);
2003-08-19 22:47:30 +00:00
echo "Done\n";
?>
--EXPECT--
2003-08-29 09:05:11 +00:00
array(1) {
[123]=>
array(1) {
[0]=>
string(4) "SEGV"
}
}
2003-08-19 22:47:30 +00:00
Done