文字列を受け入れてseolinkに変換する関数を作成しようとしています。しかし、それは非常に非専門的に見えます
それを最適化するためのより良い方法は何でしょうか?特殊文字が多すぎる可能性があるため。
関数の外観は次のようになります
function seo_url($title) {
$titel = substr($title,0,160);
// Replace underscore with "-"
$titel = ereg_replace("_","-",$title);
// Replace space with "-"
$titel = ereg_replace(" ","-",$title);
// Replace special characters
$titel = Ereg_replace ("À", "A", $Titel);
$titel = ereg_replace("í", "i", $title);
$titel = ereg_replace("ó", "o", $title);
$titel = ereg_replace("ú", "u", $title);
$titel = ereg_replace("ñ", "n", $title);
$titel = ereg_replace("Ñ", "n", $title);
$titel = Strtolower (trim($title));