3v4l.org

run code in 300+ PHP versions simultaneously
<?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);

preferences:
35.44 ms | 406 KiB | 5 Q