0; $i--) { echo 'hello';
}
while ($something) { echo 'hello';
}
do {
$i--;
} while ($something);
if(true) {
$someObject->{$name};
}
if (true) :
$foo = true;
endif;
while (true) :
$foo = true;
endwhile;
for ($i; $i > 0; $i--) :
echo 'hello';
endfor;
foreach ($array as $element) :
echo 'hello';
endforeach;
while (!$this->readLine($tokens, $tag)) {}
while (!$this->readLine($tokens, $tag)) {
//skip to end of file
}
foreach ($cookies as $cookie) {
if ($cookie->match($uri, $matchSessionCookies, $now)) {
$ret[] = $cookie;
}
}
foreach ($stringParade as $hit) {
$hitParade[] = $hit + 0; //cast to integer
}
if ($foo) :
echo 'true';
elseif ($something) :
echo 'foo';
else:
echo 'false';
endif;
function test()
{
if ($a) {
$a.=' '.($b ? 'b' : ($c ? ($d ? 'd' : 'c') : ''));
}
}
if ($a) {
foreach ($b as $c) {
if ($d) {
$e=$f;
$g=$h;
} elseif ($i==0) {
$j=$k;
}
}
}
?>
scenario == 'simple') { $widget->renderPager(); } ?>
error):
case Shop_Customer :: ERROR_INVALID_GENDER: ?>
Ungültiges Geschlecht!
Die eingetragene E-Mail-Adresse ist bereits registriert.
allowShopping !== true):
if ($this->status != Shop_Cart :: OK):
switch ($this->status):
case Shop_Cart :: NOT_FOUND:
echo 'foo';
endswitch;
endif;
else:
echo 'foo';
endif;
// ELSE IF split over multiple lines (not inline)
if ($test) {
} else
if ($test) {
} else {
}
switch($response = \Bar::baz('bat', function ($foo) {
return 'bar';
})) {
case 1:
return 'test';
case 2:
return 'other';
}
$stuff = [1,2,3];
foreach($stuff as $num) {
if ($num %2 ) {
echo "even";
} else {
echo "odd";
}
}
$i = 0;
foreach($stuff as $num) {
do {
echo $i;
$i++;
} while ($i < 5);
}
foreach($stuff as $num) {
if (true) {
echo "true1\n";
}
}
if (true) {
echo "true2\n";
}
if ($foo) { echo 'foo';
} elseif ($bar) { echo 'bar';
} else { echo 'baz';
}
switch ($type) {
case 1:
if ($foo) {
return true;
} elseif ($baz) {
return true;
} else {
echo 'else';
}
break;
}
foreach ($sql as $s) {
if (!$this->execute) { echo "",$s.";\n
";
} else {
$ok = $this->connDest->Execute($s);
if (!$ok) {
if ($this->neverAbort) { $ret = false;
} else { return false;
}
}
}
}
if ($bar) {
if ($foo) { echo 'hi'; // lol
}
}
if ($level == 'district') {
\DB::update(<< $num) {
return bar(
baz(
"foobarbaz"
)
);
}
break;
}
do {
$i++;
}
// Comment
while ($i < 10);