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.
 
 
 
 
 
 

21 lines
282 B

<?
$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;