mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
08215e7646
Fixes #469.
37 lines
686 B
Plaintext
37 lines
686 B
Plaintext
switch/case/default
|
|
-----
|
|
<?php
|
|
|
|
switch ($expr) {
|
|
case 0:
|
|
echo 'First case, with a break';
|
|
break;
|
|
case 1:
|
|
echo 'Second case, which falls through';
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
echo 'Third case, return instead of break';
|
|
return;
|
|
// Comment
|
|
default:
|
|
echo 'Default case';
|
|
break;
|
|
}
|
|
-----
|
|
switch ($expr) {
|
|
case 0:
|
|
echo 'First case, with a break';
|
|
break;
|
|
case 1:
|
|
echo 'Second case, which falls through';
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
echo 'Third case, return instead of break';
|
|
return;
|
|
// Comment
|
|
default:
|
|
echo 'Default case';
|
|
break;
|
|
} |