In a separate YML file i have :
flags: [<img src="/images/cms_bo/icons/english.png" alt="English"/>]

When i call this into my code, it's not interpreted, so i used html_entity_decode.

It works but i have only 1 strange char just before my image :

<?php echo html_entity_decode($form['lang']->render()); ?>

All my files are UTF8 encoded. Do you have an idea on what i've missed to solve this problem ?

PS:

      public static function getI18nCulturesForChoice()
  {
      return array_combine(self::getI18nCultures(), self::getI18nCulturesFlags());
  }
link|improve this question

2  
Showing some more relevant code will help – Shakti Singh Mar 14 '11 at 16:12
The question isn't very clear. Why do you use html_entity_decode in the first place? There are no entities in your description. – Jon Mar 14 '11 at 16:14
@jon @shakti because otherwise my code isn't interpreted. It doens't show the image but just the <img src="/images/cms_bo/icons/english.png" alt="English"/> (just the string) – Tristan Mar 14 '11 at 16:21
How is the value being loaded from the YML file? – Matt Gibson Mar 14 '11 at 16:33
@Matt see my edit ;-) – Tristan Mar 14 '11 at 16:38
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

Try using html_entity_decode($form['lang']->render(),ENT_QUOTES, "UTF-8");

link|improve this answer
Thanks that's finally fixed it ;-) – Tristan Mar 15 '11 at 9:43
feedback

Prior to PHP 5.3.3, the default character set for html_entity_decode was ISO-8859-1! If you're working with UTF-8, you will need to use the third argument to the function to tell it to deal with UTF-8 instead of assuming ISO-8859-1.

This is blindly assuming you're using an older version of PHP.

If you are using a newer version of PHP, consider using iconv with the //IGNORE//TRANSLIT flags to try and remove any bad UTF-8 sequences before passing the string into html_entity_decode.

link|improve this answer
@Charles Unfortunalty, it's a good lead, but i'm using php 5.3.3 :'( – Tristan Mar 14 '11 at 16:39
I stealth-edited my post to deal with that possibility. � is the "I can't represent that character" glyph, so clearly something is being lost somewhere... – Charles Mar 14 '11 at 16:41
Still not :'( , ( <?php echo html_entity_decode(iconv('UTF-8', '//IGNORE//TRANSLIT',$form['lang']->render())); ?> ) – Tristan Mar 14 '11 at 16:57
What's the output of rawurlencode($form['lang']->render()), please? Sounds like it's time to inspect the bytes. – Charles Mar 14 '11 at 17:08
@Charles sorry for the delay, here are the result of rawurlencode : pastie.org/1673679 – Tristan Mar 15 '11 at 9:41
show 2 more comments
feedback

Maybe your file has a Byte Order Mark (BOM) set.

link|improve this answer
i don't think so because without html_entity_decode, it outputs the string as it really is. Without weird char – Tristan Mar 14 '11 at 16:27
and I use textmate : (By default in Textmate for the Mac, it creates UTF-8 files without any BOM markers. ) – Tristan Mar 14 '11 at 16:28
feedback

Your Answer

 
or
required, but never shown

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