I've got two quick questions which I can't find on Google.
What's the correct name for this operator?
$a = ($b > 5) ? 'High' : 'Low';
And secondly, is there ever a situation when it's preferable over any other operator? I know 'if else' is a faster method and is easier to read and edit.
Thank you!