Sorry, just a very basic question on conditionals in PHP
If {}
elseif {}
else {}
If the if condition comes out to be true, will PHP still evaluate the elseif to see if that is true as well?
|
Sorry, just a very basic question on conditionals in PHP
If the |
|||||
|
|
No. (Basic answer for a basic question) You can read about that in depth in the PHP Manual: elseif/else if, the first example is like yours. |
|||||||
|
|
Not, it won't. It will just execute the In order to see it, you could check this:
The above code will print:
and not
|
|||
|
|
|
Nope! Once a condition is met anywhere in an if/else block, PHP exits that block and moves on. For example, in this code:
... if If you did want PHP to check subsequent conditions, you'd use multiple if statements instead. For example:
... would echo both "less than 4" and "less than 8" if |
|||
|
|
|
As others have already mentioned, no, it will not even test the
Any expressions that modify values as a byproduct of the condition test will not fire either. |
||||
|
|
|
If the first |
|||
|
|
|
No, it won't. After executing the if code, it will continue execution after the else. |
|||
|
|
|
Not the case. As soon as the condition you specify is met in a if query, php will stop going forward with the process and will contiue on to the code that appears after the if query has been ended. |
|||
|
|