Skip to content

Instantly share code, notes, and snippets.

@kythin
Created May 6, 2013 04:35
Show Gist options
  • Save kythin/5523368 to your computer and use it in GitHub Desktop.
Save kythin/5523368 to your computer and use it in GitHub Desktop.
I forget now where I got this, probably stack overflow somewhere, but it's been in my library of common functions for a while. IIRC it was based on the wordpress slugify or maybe drupal or something.
function slugify($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);
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