PHP slugify

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP slugify相关的知识,希望对你有一定的参考价值。

function slugify($text){ 
  // replace non letter or digits by -
  $text = preg_replace('~[^\\pL\d]+~u', '-', $text);
  // trim
  $text = trim($text, '-');
  // transliterate
  $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
  // lowercase
  $text = strtolower($text);
  // remove unwanted characters
  $text = preg_replace('~[^-\w]+~', '', $text);
  if (empty($text)){
    return 'n-a';
  }
  return $text;
}

以上是关于PHP slugify的主要内容,如果未能解决你的问题,请参考以下文章

php slugify

PHP Slugify功能(清洁URLS)

PHP slugify

在PHP中对字符串进行Slugify

C# 中的 Slugify 和字符转写

php PHP的简单slugify功能。为传递的字符串创建一个slug,同时考虑国际字符。