mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
34 lines
257 B
Plaintext
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";
|