Possible Duplicate:
PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string
I want to replace diacritics characters with his non-diacritics brother. example: from "guľôčka" I wanna get "gulocka"
Is here some native function to do it?
I was looking for list of all worldwide diacritics characters for replace with str_replace. I can't find it.
Thanks a lot.