008.phpt 353 B

12345678910111213141516171819202122232425
  1. --TEST--
  2. Match expression multiple conditions per case
  3. --FILE--
  4. <?php
  5. function is_working_day($day) {
  6. return match ($day) {
  7. 1, 7 => false,
  8. 2, 3, 4, 5, 6 => true,
  9. };
  10. }
  11. for ($i = 1; $i <= 7; $i++) {
  12. var_dump(is_working_day($i));
  13. }
  14. ?>
  15. --EXPECT--
  16. bool(false)
  17. bool(true)
  18. bool(true)
  19. bool(true)
  20. bool(true)
  21. bool(true)
  22. bool(false)