You don't have an account yet?
Become part of our PHP community and register now...
$ar = array('ae', 'ue', 'oe'); $ar2 = array('ä','ü','ö'); $text = "text mit muell"; $text = str_replace($ar, $ar2, $text);
Comment