Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 18, 2022 04:53 am

PHP Case Statement Quick Reference


Have you ever wanted to compare the value of a variable or expression to multiple possible results and conditionally execute some code? There are many options available for you to do that. You could either use multiple if-else conditions or you could use switch-case statements.


In this tutorial, I will show you how to use switch-case in PHP to compare a variable with many different values.


Using switch-case vs if-else : Direct Comparison


Lets begin with a simple example that shows direct comparison between using if-else and switch-case to control program flow.



Try running the above code multiple times to get different output. You will notice a few things.


Each case statement is similar to an if or elseif block. The output you get from the if-else section is same as the output from the switch-case section. Always remember to use a break statement to stop the execution of code for each case statement.


Lets say you forgot to include break with each case block and the value of $animal is 'Lion'. In that case, the code will output the location of lions, deer, and goats as well as the default statement about the tour guide.


The default statement is like a catch-all that handles all other values of $animal. It is similar to the else block that we use in the if-else section. Remember that you cannot use multiple default statements in your code.


Checking Multiple Conditions at Once


What do you do if there are multiple animals in the same section of the zoo? With if-else blocks you can put them all inside one conditional statement using || to see if any of them evaluates to true. Here is an example:



The code above would correctly tell us that Zebras are in the west section of the zoo. It skipped the code inside the first if block because that is only executed when the $animal is an elephant, lion or goat.


Lets rewrite the above code in the form of switch-case statements. You might be tempted to write it as shown below:



Look closely and you will see that the statement now says Zebras are in the east section of the zoo. So, what happened here?


The value or expression that we pass to switch is loosely compared to the value or expression that we pass with each case statement. Now, 'Elephant' || 'Lion || 'Goat' ultimately evaluates to true. This also returns true when loosely compared to the value inside $animal because a non-empty string is a truthy value. The code for the first case statement is then executed and we get the wrong location for the same zoo.


The correct way to handle multiple case statements which are supposed to execute the same section of code is by writing the case values on separate lines as shown below:



We get the correct location of Zebras now and no visitor will get lost when looking for them.


Repeat Evaluation and Performance


One more thing that you should keep in mind is that the condition is evaluated only once when using switch statement. On the other hand, it is evaluated multiple times when using if-else statement, ie. once for each if block. Here is an example:



We make a call to the function most_populated() which returns the name of a city. It simply returns New York in this case but it could easily be much more complicated and get city data from a web service for the passed country. Writing multiples if-else conditions in this case would have resulted in multiple calls to the most_populated() function.


Obviously, we could avoid all those calls by storing the call result in a variable but using switch allows you to not use any variables at all.


Final Thoughts


In this tutorial, I showed you how to use switch-case statements in PHP in place of if-else blocks to execute code conditionally. We also saw how to write case statements that cover multiple conditions. Finally, we learned how using switch-case can be faster than if-else blocks in certain situations.



Original Link: https://code.tutsplus.com/tutorials/php-case-statement-quick-reference--cms-92910

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code