mirror of
https://github.com/danog/parser.git
synced 2024-12-13 09:37:18 +01:00
15 lines
141 B
PHP
15 lines
141 B
PHP
|
<?php
|
||
|
|
||
|
if ($a) $A;
|
||
|
elseif ($b) $B;
|
||
|
else $C;
|
||
|
|
||
|
for (;;) $foo;
|
||
|
|
||
|
foreach ($a as $b) $AB;
|
||
|
|
||
|
while ($a) $A;
|
||
|
|
||
|
do $A; while ($a);
|
||
|
|
||
|
declare (a='b') $C;
|