Skip to content

Instantly share code, notes, and snippets.

@carmolim
Created June 17, 2021 15:19
Show Gist options
  • Save carmolim/b55c210057e269b096a08d346a84790c to your computer and use it in GitHub Desktop.
Save carmolim/b55c210057e269b096a08d346a84790c to your computer and use it in GitHub Desktop.
generate slugs
function slugify($text, string $divider = '-')
{
// replace non letter or digits by divider
$text = preg_replace('~[^\pL\d]+~u', $divider, $text);
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// trim
$text = trim($text, $divider);
// remove duplicate divider
$text = preg_replace('~-+~', $divider, $text);
// lowercase
$text = strtolower($text);
if (empty($text)) {
return 'n-a';
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment