1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/testfunc2
1999-09-28 17:37:06 +00:00

20 lines
156 B
Plaintext

<?
function foo($i)
{
if ($i) {
$a = "zeev";
} else {
$b = "andi";
}
}
function bar($a)
{
foo($a);
}
for ($i=0; $i<10000; $i=$i+1) {
bar($i);
}