Skip to content

Instantly share code, notes, and snippets.

@mathieuletyrant
Created September 5, 2014 13:01
Show Gist options
  • Save mathieuletyrant/f5c779e8a908e7a4c1d6 to your computer and use it in GitHub Desktop.
Save mathieuletyrant/f5c779e8a908e7a4c1d6 to your computer and use it in GitHub Desktop.
Create a Slug
function create_slug($string){
$slug=preg_replace('/[^A-Za-z0-9-]+/', '-', $string);
return $slug;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment