PHP Slugify功能(清洁URLS)

Posted

tags:

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

<?php

function slugify($str, $replace="-")
{
    // replace all non letters or digits by $replace
    $str = preg_replace('/\W+/', $replace, $str);
 
   // trim and lowercase
   $str = strtolower(trim($str, $replace));
 
   return $str;
}

?>

以上是关于PHP Slugify功能(清洁URLS)的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在PHP中使用Slugify字符串

php Slugify

php slugify

PHP slugify

在PHP中对字符串进行Slugify

PHP 通用清洁功能 - 防止SQL,XSS和JS注入