1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00
Files
archived-php-src/tests/testfunc
Andrei Zmievski 6b2003dd2a test
1999-10-04 20:28:44 +00:00

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