Answers for "php 8 Match Expression / Switch Case"

PHP
0

php 8 Match Expression / Switch Case

switch (8.0) {
  case '8.0':
    $result = "Oh no!";
    break;
  case 8.0:
    $result = "This is what I expected";
    break;
}
echo $result;
//> Oh no!

//TurkoSoft
Posted by: Guest on October-18-2021

Browse Popular Code Answers by Language