Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a working if/else on a SQL return. If it's empty I display a default.

<?php 
if($row['imagename']==='')
    {
        echo "placeholder.png";
    }
else 
    {
         echo htmlspecialchars($row['imagename'], ENT_QUOTES, 'UTF-8');
    } ?>

and I tried to put it all on one line i.e.

<?php ($row['imagename']==='') ? echo "placeholder.png";:echo htmlspecialchars($row['imagename'], ENT_QUOTES, 'UTF-8'); ?>

which fails.

Could someone clarify why it fails?

tia

share|improve this question
@Yan is right, there is a typo. – Snow Blind Jul 27 '12 at 11:29

4 Answers

up vote 9 down vote accepted

Remove the semicolon and add the echo at the beginning.

<?php echo ($row['imagename']==='') ? "placeholder.png" : 
      htmlspecialchars($row['imagename'], ENT_QUOTES, 'UTF-8'); ?>
share|improve this answer
DUH! thank you :) – chris loughnane Jul 27 '12 at 15:16
Glad it helped. – Yan Jul 27 '12 at 15:17
<?php echo ($row['imagename']==='') ? "placeholder.png" : htmlspecialchars($row['imagename'], ENT_QUOTES, 'UTF-8'); ?>

You are using the ternary operator incorrectly

share|improve this answer

As a language construct, echo doesn't like to be in a ?: expression. Do this instead:

echo true ? 'foo' : 'bar';
share|improve this answer
?? according to vld (at least at PHP version 5.3.10), the compiler emits exactly what I would expect and the same as echo (true ? 'foo' : 'bar'); – TerryE Jul 27 '12 at 11:41
@TerryE ?? I do not understand what you're saying. "vld"? I'm saying true ? echo 'foo' : echo 'bar'; does not work, which it doesn't on 5.3.13. – deceze Jul 27 '12 at 11:42
Sorry deceze, I misread your A. My bad and mindfart. +1 on yr ans. echo is a statement and not a function. BTW for other readers vld is an opcode disassembler. – TerryE Jul 27 '12 at 19:26

It fails because it's meant to be used with expressions and not statements. Refer to php comparison operators under ternary operator.

By putting a ; at the end of your expressions you have made them into statements.

Refer to: Expressions and statements to understand the difference between the two.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.