PHP html decoding help - converting: A &#039;quote&#039; is <b>bold</b>

Viewed 57210

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.

2 Answers
Related