TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
349 B

--TEST--
Match expression default case
--FILE--
<?php
function get_value($i) {
return match ($i) {
1 => 1,
2 => 2,
default => 'default',
};
}
function main() {
echo get_value(0) . "\n";
echo get_value(1) . "\n";
echo get_value(2) . "\n";
echo get_value(3) . "\n";
}
?>
--EXPECT--
default
1
2
default