Skip to content

Instantly share code, notes, and snippets.

@vitorpacheco
Created December 6, 2010 15:57
Show Gist options
  • Save vitorpacheco/730475 to your computer and use it in GitHub Desktop.
Save vitorpacheco/730475 to your computer and use it in GitHub Desktop.
função para criar slugs
function slug($string) {
$string = strtolower(str_replace(' ', '_', $string));
$pattern = "/[^a-zA-Z0-9_]/";
$string = preg_replace($pattern, '', $string);
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment