if($condition, $if-true, $if-false)
Returns one of two values, depending on whether or not $condition
is true. Just like in @if
, all values other than false
and null
are considered to be true.
if($condition, $if-true, $if-false)
Returns one of two values, depending on whether or not $condition
is true. Just like in @if
, all values other than false
and null
are considered to be true.
Please login to continue.