Skip to content

Instantly share code, notes, and snippets.

@rbk
Created July 27, 2016 18:38
Show Gist options
  • Save rbk/2db1e18046359cdb1f4a75be21f2d230 to your computer and use it in GitHub Desktop.
Save rbk/2db1e18046359cdb1f4a75be21f2d230 to your computer and use it in GitHub Desktop.
Slugify
function slugify( $str ) {
$new_str = $str;
$new_str = preg_replace('/ /', '-', $new_str);
$new_str = preg_replace('/[^A-Za-z0-9\-]/', '', $new_str);
$new_str = strtolower($new_str);
return $new_str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment