mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
This PR corrects misspellings identified by the check-spelling action. The misspellings have been reported at jsoref@b6ba3e2#commitcomment-48946465 The action reports that the changes in this PR would make it happy: jsoref@602417c Closes GH-6822.
21 lines
237 B
PHP
21 lines
237 B
PHP
--TEST--
|
|
Bug #25145 (SEGV on receipt of form input with name like "123[]")
|
|
--GET--
|
|
123[]=SEGV
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump($_REQUEST);
|
|
echo "Done\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[123]=>
|
|
array(1) {
|
|
[0]=>
|
|
string(4) "SEGV"
|
|
}
|
|
}
|
|
Done
|