Jump to content

replace all the specal text caricatures


Recommended Posts

I want to make a function to replace all the specal text caricatures

what is the best way to go about it?

I thought about
[code]
$search // array of key symbols        
$replace // array of replacments

$newtext = preg_replace($search, $replace, $oldtext);
[/code]
only problem is when i started to look into this i found there is 100's of them

just incase my post isnt clear i mean replacing things like the following

‘ with its code
’ with its code
‚ with its code

etc etc etc
Link to comment
https://forums.phpfreaks.com/topic/10475-replace-all-the-specal-text-caricatures/
Share on other sites

I actualy ended up using htmlspecialchars();

but i have a question

Is str_replace() fast enough to do so many changes ?
would there be a problem if i ran say 100 or so changes with str_replace()? i dont intend to do so but i am interested in knowing its limitations

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.