]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
authorSVN Migration <svn@php.net>
Tue, 19 Aug 2003 22:47:31 +0000 (22:47 +0000)
committerSVN Migration <svn@php.net>
Tue, 19 Aug 2003 22:47:31 +0000 (22:47 +0000)
tests/lang/bug25145.phpt [new file with mode: 0755]

diff --git a/tests/lang/bug25145.phpt b/tests/lang/bug25145.phpt
new file mode 100755 (executable)
index 0000000..39c83aa
--- /dev/null
@@ -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