Skip to content

Instantly share code, notes, and snippets.

@tlfbrito
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlfbrito/9a898386db3ec887b37b to your computer and use it in GitHub Desktop.
Save tlfbrito/9a898386db3ec887b37b to your computer and use it in GitHub Desktop.
<?php
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