($some_var) ? true_func() : false_func();
What is this in php, and what does this do? existence, boolean, or what?
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's the same thing as this:
If If It's called the ternary operator. Typically it's used as an expression when assigning a value to a variable:
It's one of the most abused programming constructs (in my opnion). |
|||||||||||
|
|
Taken from the PHP Manual: Comparison Operators
|
|||
|
|
It's the ternary operator. Instead of writing
You can write is as
|
|||
|
|
|
It's actually a ternary operator. (I mean the operator ?: is a ternary operator).
'$some_var' is a boolean expression. If it evaluates to true 'func1()' is executed else 'func2()' is executed. |
|||
|
|
|
Well, the way it's written, it does the same as just
(If |
|||
|
|
|
it checks for boolean:
Also have a look at: PHP type comparison tables |
|||
|