I need to convert a string like this:
A 'quote' is <b>bold</b>
into:
A 'quote' is <b>bold</b>
html_entity_decode() did not work.
|
I need to convert a string like this:
into:
html_entity_decode() did not work.
| |||
|
feedback
|
|
Make sure you use the right quote_style:
ENT_QUOTES Will convert both double and single quotes. (PHP Manual: html_entity_decode) | |||
feedback
|
You can replace "UTF-8" with whatever encoding you need (though depending on the encoding you choose, certain characters may not be representable). | |||
|
feedback
|