“PHP Switch 2 Variables” Código de respuesta

interruptor de php

$age=20;
switch ($age) {
	case 19:
        echo "Age is 18";
        break;
    case 20:
        echo "Age is 20";
        break;
    case 21:
        echo "Age is 21";
        break;
}
Grepper

PHP Switch 2 Variables

switch ([$color, $size]) {
    case ['blue', 'small']:
        echo 'blue and small';
    break;

    case ['red', 'large'];
        echo 'red and large';
    break;
}
Mohamed Sami khiari

Respuestas similares a “PHP Switch 2 Variables”

Preguntas similares a “PHP Switch 2 Variables”

Más respuestas relacionadas con “PHP Switch 2 Variables” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código