php-src/tests/testfunc
Andrei Zmievski 91dffe9126 Testing commit.
@ Removed white space.
1999-10-07 14:24:18 +00:00

34 lines
256 B
Plaintext

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