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.

33 lines
257 B

27 years ago
27 years ago
26 years ago
27 years ago
26 years ago
  1. <?
  2. function foo()
  3. {
  4. $i=0;
  5. if ($i) {
  6. $a = "zeev";
  7. } else {
  8. $b = "andi";
  9. }
  10. }
  11. function bar()
  12. {
  13. foo();
  14. }
  15. for ($i=0; $i<10; $i++) {
  16. bar();
  17. }
  18. for ($i=0; $i<10; $i++) {
  19. bar();
  20. }
  21. print "Got here.....
  22. ";
  23. $a = 7;
  24. $a = 5;
  25. print "Got here....\n\n";