php-src/tests/testfe

19 lines
263 B
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
<?
$foo = array(7,"foo",3,array(1,2),4);
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;