mirror of
https://github.com/php/php-src.git
synced 2026-04-15 12:01:07 +02:00
22 lines
237 B
PHP
Executable File
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
|