我正在尝试创建一个接受字符串并将其转换为 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));