Skip to content

Instantly share code, notes, and snippets.

@Artem-Schander
Created July 10, 2017 12:23
Show Gist options
  • Save Artem-Schander/89f7b56b2c37dc7e7b9caa41f725f0ef to your computer and use it in GitHub Desktop.
Save Artem-Schander/89f7b56b2c37dc7e7b9caa41f725f0ef to your computer and use it in GitHub Desktop.
Create slug
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\pL\d]+~u', '-', $text);
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// trim
$text = trim($text, '-');
// remove duplicate -
$text = preg_replace('~-+~', '-', $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