mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-14 18:16:06 +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 {
|
|
} |