1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-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";