17
1.010
function degis($text) { $search = array(' '); $replace = array('-'); $new_text = str_replace($search,$replace,$text); return $new_text; }