I need some strings that contain german chars converted to their latin equivalent. For example
\'Höhle\' => \'Hohle\'
You can also use iconv :
iconv('UTF-8', 'ASCII//TRANSLIT', 'Höhle')