Can someone please explain what the "?" and ":" operators are in PHP?
e.g.:
(($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER)
|
|
Can someone please explain what the "?" and ":" operators are in PHP? e.g.:
|
|||
|
|
|
This is the conditional operator.
means "if People will tell you that |
||||||||||||||||||||
|
|
|
It's called a ternary operator. If the first expression evaluates to true, It's basically a shorthand if statement, the above code could also be rewritten as follows:
|
||||||||||||||
|
|
|
This is sometimes known as the ternary conditional operator. Ternary means that it has three arguments, as
|
|||
|
|
|
|
This is a short way of writting IF sentences. It is also used in other languages like Java, Javascript and others. Your code:
can be written like this:
|
|||
|
|
|
|
That's basically a fancy way if writing an if else statement. Some say its easier to read, some say not. |
||||||
|
|
|
As John T says, it is called a ternary operator and is essentially a shorthand version of an if /else statement. Your example, as a full if / else statement, would read;
|
||||||
|
|
|
That is a one line if statement:
Translated to an ordinary if statement in your case, that would be:
|
||||||||
|
|
|
Conditional operator ?: is an operator which is used to check a condition and select a value depending on the value of the condition. It is expressed in the following form:
It works as follows...
For example:
In this, for x, firstly the condition (a>b) is evaluated. If this condition becomes true, then x will become the value 5 (ie, x=5). But if the condition (a>b) becomes false, then x will attain the value 9 (ie, x=9). Ternary Operator Sometimes conditional operator ?: is also called a ternary operator. This is so because it involves three operands. For example:
Here, x,y and z are the three operands. If condition x is true, then value y is assigned otherwise value z is assigned. |
|||
|
|