1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.

This commit is contained in:
SVN Migration
2003-08-19 22:47:31 +00:00
parent b34666a014
commit 26ff74d670
+21
View File
@@ -0,0 +1,21 @@
--TEST--
Bug #25145 (SEGV on recpt of form input with name like "123[]")
--GET--
123[]=SEGV
--FILE--
<?php
print_r($_REQUEST);
echo "Done\n";
?>
--EXPECT--
Array
(
[123] => Array
(
[0] => SEGV
)
)
Done