Skip to content

Instantly share code, notes, and snippets.

@loranger
Created July 11, 2012 14:08
Show Gist options
  • Save loranger/3090581 to your computer and use it in GitHub Desktop.
Save loranger/3090581 to your computer and use it in GitHub Desktop.
Slugify
<?php
function slugify($string)
{
$replacement = array(
'/&([a-z])(acute|cedil|circ|grave|orn|ring|slash|th|tilde|uml);/i' => '$1',
'/\s/i' => '_',
'/\W/i' => ''
);
return preg_replace(array_keys($replacement), array_values($replacement), htmlentities($string, ENT_NOQUOTES, 'utf-8'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment