php-src/tests/testfunc
2000-02-05 17:58:11 +00:00

35 lines
255 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";