PHP commutateur Déclaration


PHP commutateur Déclaration

Les instructions conditionnelles sont utilisées pour effectuer des actions différentes en fonction des conditions différentes.

L'instruction switch PHP

Utilisez l'instruction switch pour sélectionner l'un des nombreux blocs de code à exécuter.

Syntaxe

switch (n)
{
case label1:
  code to be executed if n=label1;
  break;
case label2:
  code to be executed if n=label2;
  break;
default:
  code to be executed if n is different from both label1 and label2;
}
C'est comment cela fonctionne: D'abord nous avons une seule expression n (le plus souvent une variable), qui est évaluée une fois. La valeur de l'expression est ensuite comparé avec les valeurs pour chaque cas dans la structure. S'il ya un match, le bloc de code associé à ce cas est exécuté.Utilisez casser pour empêcher l'exécution du code dans le cas suivant automatiquement. La déclaration par défaut est utilisé si aucune correspondance n'est trouvée.

Exemple

<html>
<body>

<?php
$x=1;
switch ($x)
{
case 1:
  echo "Number 1";
  break;
case 2:
  echo "Number 2";
  break;
case 3:
  echo "Number 3";
  break;
default:
  echo "No number between 1 and 3";
}
?>

</body>
</html>

5 commentaires:

  1. If you are going for most excellent contents like myself, just pay a
    quick visit this web page everyday as it presents feature
    contents, thanks
    installing hardwood floors

    my weblog engineered hardwood flooring

    ReplyDelete
  2. I got this web page from my buddy who shared with me on the topic of this site and at the
    moment this time I am browsing this web page and reading very informative posts at this time.


    Also visit my webpage ... hard wood floor

    ReplyDelete
  3. I enjoy what you guys are usually up too. This kind of
    clever work and exposure! Keep up the amazing works guys I've incorporated you guys to my personal blogroll.

    My web site: toe nail fungus treatments

    ReplyDelete
  4. Have you ever considered creating an ebook or guest authoring
    on other blogs? I have a blog centered on the same ideas
    you discuss and would really like to have you share some
    stories/information. I know my visitors would appreciate your work.
    If you are even remotely interested, feel free to shoot me an e mail.


    My web blog ... http://www.southernfriedfitness.tv/node/6718/

    ReplyDelete
  5. I have learn a few just right stuff here. Definitely price
    bookmarking for revisiting. I wonder how so much attempt you set to
    create this kind of wonderful informative website.
    trump plaza

    my web blog :: or refinancing

    ReplyDelete

HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT