Skip to content

Instantly share code, notes, and snippets.

@paramientos
Created November 29, 2020 00:23
Show Gist options
  • Save paramientos/e9cfbb8fe6d54cf67d1152583e0abbce to your computer and use it in GitHub Desktop.
Save paramientos/e9cfbb8fe6d54cf67d1152583e0abbce to your computer and use it in GitHub Desktop.
<?php
case '8.0':
$result = "Oh no!";
break;
case 8.0:
$result = "This is what I expected";
break;
}
echo $result;
//> Oh no!
echo match (8.0) {
'8.0' => "Oh no!",
8.0 => "This is what I expected",
};
//> This is what I expected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment