Possible Duplicate:
PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string
I need to change strings that have accents E.G: Casá to become Casa. Is there an easy way to do it with PHP? Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if iconv doesn’t work well for your purposes, strtr will replace characters with replacement characters that you assign.
http://php.net/manual/en/function.strtr.php
some user example…