Diana Castillo wrote:
Anyone know of any function to replace letters with accents with just the regular letter, for instance replace á with a,
ç with c, ñ with n ?




$string = str_replace(array('á', 'ç', 'ñ'), array('a', 'c', 'n'), $string);

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to