summaryrefslogtreecommitdiff
path: root/Zend/tests/match/008.phpt
blob: db91d80b8711057e3b9027d5be4b404976f5f674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
Match expression multiple conditions per case
--FILE--
<?php

function is_working_day($day) {
    return match ($day) {
        1, 7 => false,
        2, 3, 4, 5, 6 => true,
    };
}

for ($i = 1; $i <= 7; $i++) {
    var_dump(is_working_day($i));
}

?>
--EXPECT--
bool(false)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)