在PHP中对字符串进行Slugify
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在PHP中对字符串进行Slugify相关的知识,希望对你有一定的参考价值。
Function which will slugify a string for use in URLs, taking out any spaces and other non-URL useful characters.
/** * Modifies a string to remove al non ASCII characters and spaces. */ static public function slugify($text) { // replace non letter or digits by - // trim // transliterate { } // lowercase // remove unwanted characters { return 'n-a'; } return $text; }
以上是关于在PHP中对字符串进行Slugify的主要内容,如果未能解决你的问题,请参考以下文章
php PHP的简单slugify功能。为传递的字符串创建一个slug,同时考虑国际字符。