此功能用于创建URL slugs:
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\pL\d]+~u', '-', $text);
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// trim
$text = trim($text, '-');
// remove duplicate -
$text = preg_replace('~-+~', '-', $text);
// lowercase
$text = strtolower($text);
if (empty($text)) {
return 'n-a';
}
return $text;
}
不会替换以下字符:
ľščťýžťžýéíáý
类似于:
lsctyztzyeiay
但相反,它会完全删除它们
所以这个字符串:
asdf 1234 3 ľščťlkiop
变为
asdf-1234-3-lkiop
而不是:
asdf-1234-3-lsctlkiop
知道导致非英文字符消失的原因以及如何将它们转换为英文变体?