mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
9fa1d13301
RFC: https://wiki.php.net/rfc/match_expression_v2 Closes GH-5371.
26 lines
353 B
PHP
26 lines
353 B
PHP
--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)
|