Skip to content

Instantly share code, notes, and snippets.

@adamtester
Created January 15, 2015 11:04
Show Gist options
  • Select an option

  • Save adamtester/4d13e02bb04a26be13f3 to your computer and use it in GitHub Desktop.

Select an option

Save adamtester/4d13e02bb04a26be13f3 to your computer and use it in GitHub Desktop.
if (!function_exists('make_slug'))
{
function make_slug($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// lowercase
$text = strtolower($text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// Remove duplicates
$text = preg_replace('/-+/', '-', $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