php-src/tests/testfunc

34 lines
257 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();
}
2000-02-05 17:58:11 +00:00
for ($i=0; $i<10; $i++) {
1999-04-07 21:05:13 +00:00
bar();
}
for ($i=0; $i<10; $i++) {
bar();
}
2000-05-12 12:45:28 +00:00
print "Got here.....
1999-04-07 21:05:13 +00:00
";
$a = 7;
$a = 5;
2000-05-12 12:44:08 +00:00
print "Got here....\n\n";