PHP - Conditional Statements
What will be the output of this PHP code?
$value = '5';
$result = match($value) {
5 => 'integer five',
'5' => 'string five',
default => 'unknown',
};
echo $result;
