1
0
mirror of https://github.com/php/php-src.git synced 2026-04-15 12:01:07 +02:00
Files
archived-php-src/tests/lang/bug25145.phpt
2003-08-19 22:47:30 +00:00

22 lines
237 B
PHP
Executable File

--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