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.

19 lines
156 B

27 years ago
27 years ago
  1. <?
  2. function foo($i)
  3. {
  4. if ($i) {
  5. $a = "zeev";
  6. } else {
  7. $b = "andi";
  8. }
  9. }
  10. function bar($a)
  11. {
  12. foo($a);
  13. }
  14. for ($i=0; $i<10000; $i=$i+1) {
  15. bar($i);
  16. }