mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 17:57:59 +01:00
16 lines
124 B
Plaintext
16 lines
124 B
Plaintext
|
if/elseif/else
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
if ($expr) {
|
||
|
|
||
|
} elseif ($expr2) {
|
||
|
|
||
|
} else {
|
||
|
|
||
|
}
|
||
|
-----
|
||
|
if ($expr) {
|
||
|
} elseif ($expr2) {
|
||
|
} else {
|
||
|
}
|