Help with string encoding
Posted: Sat Oct 27, 2007 4:24 pm
Hi people
I have a string with the following content:
Which is the sentence árboles genealógicos gratis encoded (The statement means Genealogy family trees in Spanish)
I am looking for a PHP function that will conver the content of the buffer above to:
This is just an example. My input buffer may contain other encoded characters that will also need to be decoded.
any suggestions?
Jason
I have a string with the following content:
Code: Select all
$buffer = "árboles genealógicos gratis";I am looking for a PHP function that will conver the content of the buffer above to:
Code: Select all
$buffer = "árboles genealógicos gratis";any suggestions?
Jason