php-src/testfunc

36 lines
258 B
Plaintext
Raw Normal View History

1999-04-07 21:05:13 +00:00
<?
function foo()
{
$i=0;
if ($i) {
$a = "zeev";
} else {
$b = "andi";
}
}
function bar()
{
foo();
}
for ($i=0; $i<1000; $i++) {
1999-04-07 21:05:13 +00:00
bar();
}
for ($i=0; $i<10; $i++) {
bar();
}
print "Got here...
";
$a = 7;
$a = 5;
print "Got here...\n\n";