You can achieve this by using iconv available in PHP and requesting encoding conversion using transliteration , (It really works for many different scripts!) If you want only basic European characters, make target Latin-1 or even ASCII.
On the page :
iconv("UTF-8", "ISO-8859-1//TRANSLIT", $text)
source share