php-src/tests/testfunc2

20 lines
156 B
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
<?
function foo($i)
{
if ($i) {
$a = "zeev";
} else {
$b = "andi";
}
}
function bar($a)
{
foo($a);
}
1999-09-28 17:37:06 +00:00
for ($i=0; $i<10000; $i=$i+1) {
1999-04-07 21:05:13 +00:00
bar($i);
}