Skip to content

Instantly share code, notes, and snippets.

@MTco
Forked from anonymous/gist:2912227
Created September 6, 2016 16:36
Show Gist options
  • Save MTco/bc8f8ae292236c9a0b9d10bfa33ad5f5 to your computer and use it in GitHub Desktop.
Save MTco/bc8f8ae292236c9a0b9d10bfa33ad5f5 to your computer and use it in GitHub Desktop.
php slugify string
<?php
function slugify($str) {
$search = array('Ș', 'Ț', 'ş', 'ţ', 'Ş', 'Ţ', 'ș', 'ț', 'î', 'â', 'ă', 'Î', 'Â', 'Ă', 'ë', 'Ë');
$replace = array('s', 't', 's', 't', 's', 't', 's', 't', 'i', 'a', 'a', 'i', 'a', 'a', 'e', 'E');
$str = str_ireplace($search, $replace, strtolower(trim($str)));
$str = preg_replace('/[^\w\d\-\ ]/', '', $str);
$str = str_replace(' ', '-', $str);
return preg_replace('/\-{2,}', '-', $str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment