mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
20 lines
158 B
Plaintext
20 lines
158 B
Plaintext
|
<?
|
||
|
function foo($i)
|
||
|
{
|
||
|
if ($i) {
|
||
|
$a = "zeev";
|
||
|
} else {
|
||
|
$b = "andi";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
function bar($a)
|
||
|
{
|
||
|
foo($a);
|
||
|
}
|
||
|
|
||
|
for ($i=0; $i<1000000; $i=$i+1) {
|
||
|
bar($i);
|
||
|
}
|