php-src/tests/testfunc
Andrei Zmievski ffef0d8d44 Another test.
2000-05-12 12:45:28 +00:00

34 lines
257 B
Plaintext

<?
function foo()
{
$i=0;
if ($i) {
$a = "zeev";
} else {
$b = "andi";
}
}
function bar()
{
foo();
}
for ($i=0; $i<10; $i++) {
bar();
}
for ($i=0; $i<10; $i++) {
bar();
}
print "Got here.....
";
$a = 7;
$a = 5;
print "Got here....\n\n";