Skip to content

Instantly share code, notes, and snippets.

@mafsdisseny
Last active October 15, 2015 08:14
Show Gist options
  • Save mafsdisseny/603c95fa12418f149baf to your computer and use it in GitHub Desktop.
Save mafsdisseny/603c95fa12418f149baf to your computer and use it in GitHub Desktop.
This function returns a string without accents
<?php
//Function that returns a string without accents
//source: http://stackoverflow.com/a/11743977/2841746
function stripAccents($text_to_strip) {
return strtr(utf8_decode($text_to_strip), utf8_decode('àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ'), 'aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment