<?php
$shit = "shit";
$podrida = "podrida";
switch ($shit) {
case "shit" && ($podrida == "podrida"):
echo "leches";
break;
case "lol" && ($podrida == "shit"):
echo "mujaja";
break;
default:
echo "shit shit and doble shit...";
break;
}
?>