Last active
December 16, 2016 11:49
-
-
Save renatocassino/3f163fc2e1b85fe80691 to your computer and use it in GitHub Desktop.
Title to slug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function toSlug($text) | |
{ | |
$text = preg_replace( | |
['/(à|á|ã|â)/','/(é|è|ẽ|ê)/','/(í|ì|ĩ|î)/','/(ó|ò|õ|ô)/','/(ú|ù|û)/','/ç/','/ /'], | |
['a','e','i','o','u','c','-'], | |
strtolower($text) | |
); | |
$text = preg_replace('/([^a-z0-9-])/','',$text); | |
return $text; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment