Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ternary operator and string concatenation quirk?

Hi I just want to know why this code yields (at least for me) an incorrect result.

Well, probably i'm in fault here

$description = 'Paper: ' . ($paperType == 'bond') ? 'Bond' : 'Other'; 

I was guessing that if paperType equals 'Bond' then description is 'Paper: Bond' and if paperType is not equals to 'Bond' then description is 'Paper: Other'.

But when I run this code the results are description is either 'Bond' or 'Other' and left me wondering where the string 'Paper: ' went???

like image 240
Cesar Avatar asked Aug 23 '09 00:08

Cesar


1 Answers

$description = 'Paper: ' . ($paperType == 'bond' ? 'Bond' : 'Other'); 

Try adding parentheses so the string is concatenated to a string in the right order.

like image 86
meder omuraliev Avatar answered Oct 08 '22 14:10

meder omuraliev