Last Updated: September 09, 2019
·
678
· liamchapman

Create clean URLS (Slugs)

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