PHP 在PHP中使用Slugify字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在PHP中使用Slugify字符串相关的知识,希望对你有一定的参考价值。
/**
* Modifies a string to remove al non ASCII characters and spaces.
*/
static public function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
if (function_exists('iconv'))
{
$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 在PHP中使用Slugify字符串的主要内容,如果未能解决你的问题,请参考以下文章
php PHP的简单slugify功能。为传递的字符串创建一个slug,同时考虑国际字符。
C# 中的 Slugify 和字符转写
php Slugify
php slugify
PHP Slugify功能(清洁URLS)
PHP slugify