ternary operator in php with echo value

operator-keyword, php, ternary

Solution

Use this code

echo (isset($options['footer_txt_color'])) ? $options['footer_txt_color'] : '#ffffff';

Problem

I want to write the following code in ternary operator. I tried in many way but it does not work at all. ``` <?php if(isset($options['footer_txt_color'])) { echo $options['footer_txt_color']; } else { echo "#ffffff"; } ?> ```

Original source

Related problems