What are the ? and : operators in PHP?
?
:
For example:
(($request_type == \'SSL\') ? HTTPS_SERVER : HTTP_SERVER)
That's basically a fancy way of writing an if-else statement. Some say it's easier to read, some say not.
if
else
Ternary operator at Wikipedia