PHP Switch Statement in Hindi – Switch Statement in PHP in Hindi जब किसी Program में बहुत सारी Condition लगानी होती है। तो Switch Case Statement का Use किया जाता है।
इसके माध्यम से हम Program में बहुत सारी Condition का Use कर सकते है।
PHP Switch Statement In Hindi
पिछले Tutorial में हमने If else Statement को देखा था। जिनके माध्यम से Condition लगा सकते है। लेकिन अगर If else statement में हम बहुत सारी Condition लगते है। तो Program काफी अधिक बड़ा हो जाता है। इसी समस्या को हल करने के लिए Switch Statement का Use किया जाता है।
Syntax of Switch Statement
<?php switch (expression ) { case constant1: execute the statement; break; case constant2: execute the statement; break; case constant3: execute the statement; break; ......... default: execute the statement; } ?>
1. यहाँ पे Switch में हम जो भी Expression देते है। उसमे String , Integer , Character आदि हो सकता है। उसमे एक Variable दिया जाता है। सबसे पहले Program Variable की Value को check करता है।
<?php $fruit = "Apple"; switch ($fruit) { case "Mango": echo "This is mango"; break; case "Grapes": echo "This is Grapes"; break; case "Orange": echo "This is This is Orange"; break; case "Ananas": echo "This is Ananas"; break; case "green": echo "This is Banana"; break; case "Apple": echo "This is Apple"; break; default: echo "No Fruits"; } ?>
Output
This is Apple
1. $fruit = “Apple”; ये एक Variable Create किया गया है।
अब इसमें Expression प्रत्येक Case Condition को Compare करेगा। अगर वो किसी भी value के साथ match होता है। तो code execute हो जायेगा।