vote up 0 vote down star

Hey, is there any built in functions or something like that in php that will allow me to turn HTML special code like: <(;), >(;), Á(;) and ©(;) etc... into <, >, Á and ©

Lets say I have the value:

$fileName = "Gibt es eine schö(;)ne Offroadstrecke? (;)";

And I want this:

$fileName = "Gibt es eine schöne Offroadstrecke? ";

Any easy way to do this with php? The first I though of was to make a function that hard codes replaceing all of the HTML, search each string for the codes and replace but that is a whole lot of code in the end. :)

flag

I have a feeling your formatting has been messed up by StackOverflow -- is that right? Or did you really intend (;)? I'm assuming you're really meaning that the filename has an HTML entity in it. – Ben Jan 6 at 17:33

2 Answers

vote up 4 vote down check

I think you want html_entity_decode

link|flag
You can use '\' to escape underscores, e.g. html_entity_decode – ChrisW Jan 6 at 17:29
Excellent! Thanks Chris. – Ben Jan 6 at 17:32
Yep thats it... Thanks :D – suxSX Jan 6 at 17:32
vote up 1 vote down

Is there a reason you can't simply do a RegEx (or some other tool) to search and replace for "(;)" ?

link|flag

Your Answer

Get an OpenID
or

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