Skip to content

Instantly share code, notes, and snippets.

@hmert
Created September 5, 2011 08:18
Show Gist options
  • Save hmert/1194391 to your computer and use it in GitHub Desktop.
Save hmert/1194391 to your computer and use it in GitHub Desktop.
Slug function
function create_slug($string){
$string = preg_replace( '/[«»""!?,.!@£$%^&*{};:()]+/', '', $string );
$string = strtolower($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