You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
298 B

23 years ago
23 years ago
23 years ago
  1. --TEST--
  2. Bug #25145 (SEGV on recpt of form input with name like "123[]")
  3. --SKIPIF--
  4. <?php if (php_sapi_name() == 'cli') echo 'skip'; ?>
  5. --GET--
  6. 123[]=SEGV
  7. --FILE--
  8. <?php
  9. var_dump($_REQUEST);
  10. echo "Done\n";
  11. ?>
  12. --EXPECT--
  13. array(1) {
  14. [123]=>
  15. array(1) {
  16. [0]=>
  17. string(4) "SEGV"
  18. }
  19. }
  20. Done