mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
9fa1d13301
RFC: https://wiki.php.net/rfc/match_expression_v2 Closes GH-5371.
20 lines
242 B
PHP
20 lines
242 B
PHP
--TEST--
|
|
Match expression omit trailing comma
|
|
--FILE--
|
|
<?php
|
|
|
|
function print_bool($bool) {
|
|
echo match ($bool) {
|
|
true => "true\n",
|
|
false => "false\n"
|
|
};
|
|
}
|
|
|
|
print_bool(true);
|
|
print_bool(false);
|
|
|
|
?>
|
|
--EXPECT--
|
|
true
|
|
false
|