PHP modifier to transliterate a given string (requires iconv, mb_string)
function transliterate($value, $characterset) { return iconv(mb_detect_encoding($value, NULL, true), $characterset . '//IGNORE//TRANSLIT', trim($value)); }