Tural Ağayev Konu tarihi: 18 Mart 2013 Paylaş Konu tarihi: 18 Mart 2013 4.cü dərsdə Switch Case-dən istifadə qaydası və onun if-ə laternativ yazılış qaydasını göstərəcəm. <?php $yash=25; switch ($yash) { case 10: echo 'yash 10-a beraberdir'; break; case 18: echo 'yash 18-a beraberdir'; break; case 20: echo 'yash 20-a beraberdir'; break; case 25: { echo 'yash '.$yash.'-e beraberdir'; } break; case 30: echo 'yash 30-a beraberdir'; break; } ?> İndi isə bir misalı həm İF operatorundan həm də Switch Case-dən istifadə edərək yazaq. <?php $i=1; if ($i == 0) echo "i beraberdi 0 "; else if ($i == 1) echo "i beraberdi 1 "; else if ($i == 2) echo "i beraberdi 2 "; switch ($i) { case 0: echo "i beraberdi 0 "; break; case 1: echo "i beraberdi 1 "; break; case 2: echo "i beraberdi 2 "; break; } ?> Alıntı Счастье не ищут, как золото или клад. Его создают сами, те, у кого хватает сил, знания и любви Link to comment Share on other sites More sharing options...
Recommended Posts
Sohbete katıl
Şimdi mesajını gönderebilir ve daha sonra kayıt olabilirsin. Bir hesabın varsa, hesabınla göndermek için şimdi oturum aç.