vote up 2 vote down star
1

I am using tinyMCE and, rather annoyingly, it replaces all of my apostrophes with their HTML numeric equivalent. Now most of the time this isn't a problem but for some reason I am having a problem storing the apostrophe replacement. So i have to search through the string and replace them all. Any help would be much appreciated

flag

3 Answers

vote up 8 vote down check

did you try:

$string = str_replace("&#39;", "<replacement>", $string);
link|flag
The very trick straight off. Thankyou very much! – Drew Nov 21 '08 at 11:12
vote up 1 vote down

Is it just apostrophes that you want decoded from HTML entities, or everything?

print html_entity_decode("Hello, that&#39;s an apostophe.", ENT_QUOTE);

will print

Hello, that's an apostrophe.
link|flag
vote up 1 vote down

Why work around the problem when you can fix the cause? You can just turn of the TinyMCE entity encoding*. More info: here

*Unless you want all the other characters encoded, that is.

link|flag
Cheers! Unfortunately i need to leave it on so flash can read all the other characters properly. – Drew Nov 21 '08 at 13:52

Your Answer

Get an OpenID
or

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