Last active
April 4, 2021 15:05
-
-
Save colynb/fa062344b3cc6749b75e3dd6d579cad9 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$name = 'dog'; | |
$value = match ($name) { | |
'dog' => 1, | |
'cat' => 2, | |
'horse' => 3, | |
default => throw new \Exception, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment