php-src/tests/testfunc
Andrei Zmievski 26b5ef7435 test commit
1999-10-02 20:26:17 +00:00

36 lines
259 B
Text

<?
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";