I have a text like this:
加入营销计划 Informática \xf3
and i want to do html_entity_decode
If I'm saying
$str = $_GET['str']
... where $_GET['str'] is my string
html_entity_decode($str, ENT_NOQUOTES, 'utf-8');
... will return the same string, with no change.
But, if I'm saying
$str = "加入营销计划 Informática \xf3";
html_entity_decode($str, ENT_NOQUOTES, 'utf-8');
... will return modified string. Why and what I should do to have the correct value when I get the string from GET/POST ?
Thank you.