Search code examples
phpoperator-keywordternary

ternary operator in php with echo value


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";

}

?>

Solution

  • Use this code

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