Is there a function that coverts special characters to their english equivalents. For Eg. Convert é to e. Etc...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The function you are after is iconv() - from the user notes, this seems to be what you want to do: characters transliteration |
|||||||||||
|
|
If you don't like danp's solution (iconv), you could use |
|||
|
|
|
You could make a function holding a array of chars you want exchanged and pass strings through and just change ã to a that way, if iconv() doesn´t work out for you. |
|||
|
|
|
You should use this one and it will works:
I've tested it a lot of accentuated characters |
||||
|
|