mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
19 lines
248 B
PHP
19 lines
248 B
PHP
--TEST--
|
|
Testing $argc and $argv handling (GET)
|
|
--INI--
|
|
register_argc_argv=1
|
|
--GET--
|
|
ab+cd+ef+123+test
|
|
--FILE--
|
|
<?php
|
|
for ($i=0; $i<$_SERVER['argc']; $i++) {
|
|
echo "$i: ".$_SERVER['argv'][$i]."\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
0: ab
|
|
1: cd
|
|
2: ef
|
|
3: 123
|
|
4: test
|