I need to convert a string like this:

A &#039;quote&#039; is <b>bold</b>

into:

A 'quote' is <b>bold</b>

html_entity_decode() did not work.

link|improve this question

57% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Make sure you use the right quote_style:

html_entity_decode('A &#039;quote&#039; is <b>bold</b>', ENT_QUOTES);

ENT_QUOTES Will convert both double and single quotes. (PHP Manual: html_entity_decode)

link|improve this answer
That helps - thats exactly it - it worked fine after this! Thanks RObert! – tzmatt7447 Aug 26 '10 at 11:47
feedback
mb_convert_encoding($string, "UTF-8", "HTML-ENTITIES");

You can replace "UTF-8" with whatever encoding you need (though depending on the encoding you choose, certain characters may not be representable).

link|improve this answer
+1 for mb_convert_encoding! Didn't know it, great help! – Melsi Oct 14 '11 at 10:30
feedback

Your Answer

 
or
required, but never shown

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