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.

link|improve this question
It'd be interesting to see your raw URL string. – Álvaro G. Vicario Jun 17 '11 at 10:23
feedback

1 Answer

I feel that's because $_GET doesn't accept \ in your $_GET string. try to base64_encode(); your string and put it to $_GET['str'] (it means that you will have another link without these chars)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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