function seo($text) { $search =array("Ğ", "Ü", "Ş", "İ", "Ö", "Ç", "ğ", "ü", "ş", "ı", "ö", "ç", " ", ","); $replace =array("g", "u", "s", "i", "o", "c", "g", "u", "s", "i", "o", "c", "-", "_"); return mb_strtolower(str_replace($search, $replace, $text), "utf8"); }