Last active
November 25, 2020 13:25
-
-
Save MarceloZapatta/797ed7efce89186d254fae2c4d57237e to your computer and use it in GitHub Desktop.
stripaccents PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function stripAccents(string $string) | |
| { | |
| $replaceArray = [ | |
| 'Š' => 'S', | |
| 'š' => 's', | |
| 'Đ' => 'Dj', | |
| 'đ' => 'dj', | |
| 'Ž' => 'Z', | |
| 'ž' => 'z', | |
| 'Č' => 'C', | |
| 'č' => 'c', | |
| 'Ć' => 'C', | |
| 'ć' => 'c', | |
| 'À' => 'A', | |
| 'Á' => 'A', | |
| 'Â' => 'A', | |
| 'Ã' => 'A', | |
| 'Ä' => 'A', | |
| 'Å' => 'A', | |
| 'Æ' => 'A', | |
| 'Ç' => 'C', | |
| 'È' => 'E', | |
| 'É' => 'E', | |
| 'Ê' => 'E', | |
| 'Ë' => 'E', | |
| 'Ì' => 'I', | |
| 'Í' => 'I', | |
| 'Î' => 'I', | |
| 'Ï' => 'I', | |
| 'Ñ' => 'N', | |
| 'Ò' => 'O', | |
| 'Ó' => 'O', | |
| 'Ô' => 'O', | |
| 'Õ' => 'O', | |
| 'Ö' => 'O', | |
| 'Ø' => 'O', | |
| 'Ù' => 'U', | |
| 'Ú' => 'U', | |
| 'Û' => 'U', | |
| 'Ü' => 'U', | |
| 'Ý' => 'Y', | |
| 'Þ' => 'B', | |
| 'ß' => 'Ss', | |
| 'à' => 'a', | |
| 'á' => 'a', | |
| 'â' => 'a', | |
| 'ã' => 'a', | |
| 'ä' => 'a', | |
| 'å' => 'a', | |
| 'æ' => 'a', | |
| 'ç' => 'c', | |
| 'è' => 'e', | |
| 'é' => 'e', | |
| 'ê' => 'e', | |
| 'ë' => 'e', | |
| 'ì' => 'i', | |
| 'í' => 'i', | |
| 'î' => 'i', | |
| 'ï' => 'i', | |
| 'ð' => 'o', | |
| 'ñ' => 'n', | |
| 'ò' => 'o', | |
| 'ó' => 'o', | |
| 'ô' => 'o', | |
| 'õ' => 'o', | |
| 'ö' => 'o', | |
| 'ø' => 'o', | |
| 'ù' => 'u', | |
| 'ú' => 'u', | |
| 'û' => 'u', | |
| 'ý' => 'y', | |
| 'ý' => 'y', | |
| 'þ' => 'b', | |
| 'ÿ' => 'y', | |
| 'Ŕ' => 'R', | |
| 'ŕ' => 'r', | |
| ]; | |
| return strtr($string, $replaceArray); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment