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.

18 lines
263 B

27 years ago
  1. <?
  2. $foo = array(7,"foo",3,array(1,2),4);
  3. for ($i=0; $i<3; $i++):
  4. foreach($a, $foo ) {
  5. if (gettype($a)=="array") {
  6. print "Array:\n";
  7. foreach($b, $a) {
  8. print "\t$b\n";
  9. }
  10. print "End of array.\n";
  11. } else {
  12. print "$a\n";
  13. }
  14. // print "$a\n";
  15. }
  16. endfor;