mirror of
https://github.com/danog/parser.git
synced 2024-12-13 09:37:18 +01:00
479f51913c
Signed-off-by: azjezz <azjezz@protonmail.com>
11 lines
131 B
PHP
11 lines
131 B
PHP
<?php
|
|
|
|
|
|
$a = 4;
|
|
|
|
$b = match ($a) {
|
|
1,2,3,4 => null,
|
|
// seems weird, but PHP considers this valid.
|
|
default, => null,
|
|
};
|