if else shorthand solution

578 Views Asked by At

I am not sure if the following validation can be done with if shorthand.

//if $error is set, echo $errro or just echo blank string.
(isset($error)) ? echo $error:echo '';

I know I got it wrong, Anyone here can help me to correct my code? Thanks a lot.

3

There are 3 best solutions below

0
On BEST ANSWER
echo isset($error) ? $error : '';
0
On

You probably want:

echo (isset($error) ? $error : '');

The inline if is not well implemented in PHP as far as associativity is concerned; see Wikipedia for more info.

1
On

There are few good examples in php documentation (ternary operator). But basically usage is:

echo (isset( $error) ? $error : '');

It also has a short form, that can be used in case that $error is always set but is evaluated as (bool)false by default:

echo ($error ?: '');