Source : lesson_04_switch_2.php |
Résultat |
<?php $randValue = rand ( 1, 8); echo "Valeur : ".$randValue."<br/>" ; switch ($randValue) { case ($randValue < 4 ) : $file_name = '../colors'.'//'.'1.jpg' ; echo "<img src=$file_name height=50 width= 50 >";break; case ($randValue < 7 ) : $file_name = '../colors'.'//'.'2.jpg' ; echo "<img src=$file_name height=100 width= 100 >";break; case ($randValue > 6 ) : $file_name = '../colors'.'//'.'3.jpg' ; echo "<img src=$file_name height=150 width= 150 >";break; } ?>
|
Valeur : 7
|