PHP Switch Statement in Hindi

Posted by
Apply Link- Submit Resume

  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

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 करता है। 

 2. फिर उसके बाद वो प्रत्येक Case Constant से check करता है। अगर Variable की Value Case Constant से match होती है। तो Condition True हो जाती है। और उसी Case का Code Execute हो जाता है। 
 3. अगर किसी भी Case से Expression match नहीं होता है। तो Default वाला Code Execute होता है।
अब इसका एक Program देखते है।  और उसको समझते है।  

<?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 किया गया है। 

 2. switch ($fruit)इसको Expression में add किया गया है 
 3. case “Grapes”: अब Case के साथ में Condition लगा दी है।
अब इसमें Expression प्रत्येक Case Condition को Compare करेगा। अगर वो किसी भी value के साथ match होता है। तो code execute हो जायेगा।

Leave a Reply

Your email address will not be published. Required fields are marked *