Slug URL 生成函数覆盖 Ç


Slug URL generation function overriding the Ç

我上面有这个功能从帖子标题创建url slugs,问题是ç字符没有转换为c。它实际上被函数覆盖。

帖子标题示例:佩卢西亚科拉桑

生成的蛞蝓:科拉奥德佩卢西亚

如何修复此功能以生成蛞蝓,例如:科拉索德佩卢西亚

function generate_seo_link($input,$replace = '-',$remove_words = true,$words_array = array())
{
    //make it lowercase, remove punctuation, remove multiple/leading/ending spaces
    $return = trim(ereg_replace(' +',' ',preg_replace('/[^a-zA-Z0-9's]/','',strtolower($input))));
    //remove words, if not helpful to seo
    //i like my defaults list in remove_words(), so I wont pass that array
    if($remove_words) { $return = remove_words($return,$replace,$words_array); }
    //convert the spaces to whatever the user wants
    //usually a dash or underscore..
    //...then return the value.
    return str_replace(' ',$replace,$return);
}

您应该使用 iconv 模块和如下函数进行转换:

function url_safe($string){
    $url = $string;
    setlocale(LC_ALL, 'pt_BR'); // change to the one of your language
    $url = iconv("UTF-8", "ASCII//TRANSLIT", $url);  
    $url = preg_replace('~[^''pL0-9_]+~u', '-', $url);
    $url = trim($url, "-");
    $url = strtolower($url);
    return $url;
}