mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
36 lines
260 B
Plaintext
36 lines
260 B
Plaintext
<?
|
|
function foo()
|
|
{
|
|
$i=0;
|
|
|
|
if ($i) {
|
|
$a = "zeev";
|
|
} else {
|
|
$b = "andi";
|
|
}
|
|
}
|
|
|
|
|
|
function bar()
|
|
{
|
|
foo();
|
|
}
|
|
|
|
for ($i=0; $i<100000; $i++) {
|
|
bar();
|
|
}
|
|
|
|
|
|
for ($i=0; $i<10; $i++) {
|
|
bar();
|
|
}
|
|
|
|
print "Got here...
|
|
|
|
";
|
|
|
|
$a = 7;
|
|
|
|
$a = 5;
|
|
|
|
print "Got here...\n\n"; |