What are the different ways of writing if conditional statements using PHP?
I know for example of the following
if($test == 1){
}else{
}
and
if($test == 1)
echo 'asdsa';
else
echo 'sdaaa';
|
|
What are the different ways of writing if conditional statements using PHP? I know for example of the following
and
|
||
|
|
|
|
There's the alternative control structure syntax:
|
||||||||||
|
|
|
The other way is to use a ternary operator. The example in the PHP documentation is:
The other control structures are documented in the PHP manual as well. The only conditional statements are the ternary conditional operator, |
||
|
|
|
Also take a look at switch() http://php.net/manual/en/control-structures.switch.php
|
||
|
|
|
|
Straight from the PHP manual:
|
||
|
|
|
|
Besides what's already been said, there's stuff like
Or like Alternative syntax for control structures (the assignment "OR" trick is really a trick :) if the mysql_connect() doesn't evaulate to true, PHP will try to evaluate the second expression so this is really a hack of:
) |
||
|
|
|
Don't forget that "Conditional Complexity" is a code smell. Polymorphism is your friend.
One of the simplest things you can do to avoid nested if blocks is to learn to use Guard Clauses. (Note: this is not PHP syntax. Regard it as pseudo code. The techniques here are what are important.)
The other thing I have found simplifies things pretty well, and which makes your code self-documenting, is Consolidating conditionals.
Other valuable refactoring techniques associated with conditional expressions include Decompose Conditional, Replace Conditional with Visitor, and Reverse Conditional. Now that you have some new hammers, don't let everything look like a nail! |
||||||
|
|
|
|
||
|
|
The standard if statement:
Without braces for single lines of code after each statement:
The alternate control syntax:
And finally, the ternary operator:
Which can also be written as:
Or without brackets entirely if you wish. |
||
|
|