Skip to content

Instantly share code, notes, and snippets.

@RKAN
Created July 19, 2013 15:53
Show Gist options
  • Save RKAN/6040227 to your computer and use it in GitHub Desktop.
Save RKAN/6040227 to your computer and use it in GitHub Desktop.
slugify text
<?php
function getSlug($text)
{
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
$text = trim($text, '-');
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
$text = strtolower($text);
$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