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.

20 lines
309 B

  1. --TEST--
  2. Testing $argc and $argv handling (GET)
  3. --SKIPIF--
  4. <?php if (php_sapi_name()=='cli') echo 'skip'; ?>
  5. --INI--
  6. register_argc_argv=1
  7. --GET--
  8. ab+cd+ef+123+test
  9. --FILE--
  10. <?php
  11. for ($i=0; $i<$_SERVER['argc']; $i++) {
  12. echo "$i: ".$_SERVER['argv'][$i]."\n";
  13. }
  14. ?>
  15. --EXPECT--
  16. 0: ab
  17. 1: cd
  18. 2: ef
  19. 3: 123
  20. 4: test