Formatting a PHP string in UTF8

0

I have the following content in a $ description variable:

Iwouldlikethewords"metallic" "plastic" "dimensions" to be normal. What should I use?

    
asked by anonymous 28.11.2017 / 14:29

1 answer

1

I solved with html_entity_decode () the final code looks like this:

$descricao = html_entity_decode($descricao);
    
28.11.2017 / 14:50