<?php $str = 'Maier warnt Müller vor „Harter Debatte“'; $value = strtolower(trim($str)); $find = ["?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", "“", "„", " ", chr(0)]; $value = str_replace($find, '-', $value); $find = ['ä', 'ö', 'ü', 'ß', 'Ä', 'Ö', 'Ü']; $replace = ['ae', 'oe', 'ue', 'ss', 'Ae', 'Oe', 'Ue']; echo str_replace($find, $replace, $value);
You have javascript disabled. You will not be able to edit any code.