php Slugify

Posted

tags:

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

<?php

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;
}

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

php slugify

PHP Slugify功能(清洁URLS)

PHP slugify

在PHP中对字符串进行Slugify

C# 中的 Slugify 和字符转写

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