Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created August 29, 2014 10:42
Show Gist options
  • Save asilbalaban/bf3caec72c188c15eed8 to your computer and use it in GitHub Desktop.
Save asilbalaban/bf3caec72c188c15eed8 to your computer and use it in GitHub Desktop.
PHP SLUG FUNCTION - slugify
function 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);
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