This is a list of accented characters I have found here.
ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ
I have used the Codeigniter function convert_accented_characters
to convert accented characters to ASCII characters. However, it seems to fail for two characters (Þ and þ), see output:
AAAeAAAAECEEEEIIIIDjNOOOOOeOUUUUeYÞssaaaaaeaaeceeeeiiiidjnoooooeouuuueyþy
How can I extend this array to account for these two characters.
Would this change be adequate?
'/п/Þ/þ' => 'p',
at line 88? I am not familiar with those characters and what language they are from!