Slugify函数(清除URL)

Posted

tags:

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

Quick and simple script to make clean urls. Works in combination with Apache mod_rewrites :-)
  1. <?php
  2.  
  3. function slugify($str, $replace="-")
  4. {
  5. // replace all non letters or digits by $replace
  6. $str = preg_replace('/W+/', $replace, $str);
  7.  
  8. // trim and lowercase
  9. $str = strtolower(trim($str, $replace));
  10.  
  11. return $str;
  12. }
  13.  
  14. ?>

以上是关于Slugify函数(清除URL)的主要内容,如果未能解决你的问题,请参考以下文章

如何清除片段中的参数?

在PHP中对字符串进行Slugify

如何从片段外部清除/重置地图?

如何增强 slugify 以处理 Camel Case?

C# 中的 Slugify 和字符转写

用纯 bash 创建 URL 友好的 slug?