php-8.0.30-src/Zend/tests/match/042.phpt

23 lines
445 B
PHP

--TEST--
Match expression with undefined variable as expression
--FILE--
<?php
var_dump(match ($undefinedVariable) {
null => 'null',
default => 'default',
});
var_dump(match ($undefinedVariable) {
1, 2, 3, 4, 5 => 'foo',
default => 'bar',
});
?>
--EXPECTF--
Warning: Undefined variable $undefinedVariable in %s.php on line 3
string(4) "null"
Warning: Undefined variable $undefinedVariable in %s.php on line 8
string(3) "bar"