mirror of
https://github.com/danog/parser.git
synced 2024-12-14 01:47:21 +01:00
00834ed3ff
Closes #33.
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; |