<?php

match (1) {
    default => 'foo',
    1 => 'bar',
    2 => 'baz',
    default => 'qux',
};

?>