summaryrefslogtreecommitdiff
path: root/tests/basic/011.phpt
blob: 7c2d395b9d2230ac0389a3527f18861c731161a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing $argc and $argv handling
--POST--
--GET--
ab+cd+ef+123+test
--FILE--
<?php 
	for($i=0;$i<$argc;$i++) {
		echo "$i: ".$argv[$i]."\n";
	}
?>
--EXPECT--
0: ab
1: cd
2: ef
3: 123
4: test