I want to convert special characters to HTML entities, and then back to the original characters.

I have used htmlentities() and then html_entity_decode(). It worked fine for me, but { and } do not come back to the original characters, they remain { and }.

What can I do now?

My code looks like:

$custom_header = htmlentities($custom_header);
$custom_header = html_entity_decode($custom_header);
link|improve this question

2  
Cannot reproduce. codepad.org/EpUQzjrx Please provide a complete example that demonstrates this behavior. – deceze Nov 23 '11 at 2:16
It works well for me. – Aurelio De Rosa Nov 23 '11 at 2:16
My $custom_header look like this <p><script type="text/javascript"> $(document).ready(function() &#123; $("#left_side_custom_image").click(function() &#123; alert("HELLO"); &#125;); &#125;); </script></p> – Pritom Nov 23 '11 at 2:17
So you're htmlentity-encoding a string that contains &#123; and when decoding it it returns to &#123;? That's... expected. – deceze Nov 23 '11 at 2:20
Please follow the link please codepad.org/EpUQzjrx and do me a favour. I want &#123; to '{' other wise my jquery code doesnt work. – Pritom Nov 23 '11 at 2:24
show 2 more comments
feedback

1 Answer

up vote 2 down vote accepted

Even though nobody can replicate your problem, here's a direct way to solve it by a simple str_replace.

$input = '<p><script type="text/javascript"> $(document).ready(function() &#123; $("#left_side_custom_image").click(function() &#123; alert("HELLO"); &#125;); &#125;); </script></p> ';
$output = str_replace( array( '&#123;', '&#125;'), array( '{', '}'), $input);

Demo (click the 'Source' link in the top right)

Edit: I see the problem now. If your input string is:

"&#123;hello}"

A call to htmlentities encodes the & into &amp;, which gives you the string

"&amp;#123;hello}"

The &amp; is then later decoded back into &, to output this:

"&#123;hello}"

The fix is to send the string through html_entity_decode again, which will properly decode your entities.

$custom_header = "&#123;hello}";
$custom_header = htmlentities($custom_header);

$custom_header = html_entity_decode($custom_header);
echo html_entity_decode( $custom_header); // Outputs {hello}
link|improve this answer
Thank you for this answer, but if any other character contains later which this time is not? How can i write a full replace code of such this type of characters? – Pritom Nov 23 '11 at 2:42
1  
@user1044804 - I've edited my solution to add a fix for your most recent paste. – nickb Nov 23 '11 at 2:49
Thanks a lot. Its now working properly. – Pritom Nov 23 '11 at 3:07
feedback

Your Answer

 
or
required, but never shown

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