summaryrefslogtreecommitdiff
path: root/testfe
blob: 5ae85511b5b52ef56f406eb7ed459bd1161976fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?

$foo = array(7,"foo",3,array(1,2),4);

//print $foo[1];

for ($i=0; $i<3; $i++):

foreach($a, $foo ) {
	if (gettype($a)=="array") {
		print "Array:\n";
		foreach($b, $a) {
			print "\t$b\n";
		}
		print "End of array.\n";
	} else {
		print "$a\n";
	}
//	print "$a\n";
}
endfor;