Advertisement
Gleidson_21

SwitchCase

Jun 22nd, 2021
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. // SWITCH CASE
  2. echo "<br> <hr> Switch case - <br>";
  3.  
  4. $cor = "Azul";
  5. switch ($cor):
  6.   case  "vermelho":
  7.     echo "Sua cor preferida é vermelho";
  8.     break;
  9.   case "Azul":
  10.     echo "Sua cor preferida é azul";
  11.     break;
  12.  
  13.   default:
  14.     echo "Essa cor não existe"; // caso nao for nenhu mdos casos acima
  15. endswitch;
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement