fork download
  1.  
Success #stdin #stdout 0.03s 25380KB
stdin
<?php

$num = 3;

switch ($num)

{

case 1:

echo "One";

break;

case 2:

echo "Two";

break;

case 3:

echo "Three";

break;

case 4:

echo "Four";

break;

case 5:

echo "Five";

break;

default:

echo "Number is not between 1 to 5.";

break;

}

?>
stdout
Standard output is empty