Skip to content

Instantly share code, notes, and snippets.

@Alanaktion
Created November 28, 2014 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alanaktion/c00e13a2de0729ce63fc to your computer and use it in GitHub Desktop.
Save Alanaktion/c00e13a2de0729ce63fc to your computer and use it in GitHub Desktop.
Tiny PHP slugify function
<?php
function slugify($str) {
return trim(strtolower(preg_replace("/-+/", "-", preg_replace("/[^a-z0-9]/i", "-", $str))), "-");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment