Created
April 22, 2019 20:58
-
-
Save Jamp/44e4a8aa2891f11ed34220b80b3098e6 to your computer and use it in GitHub Desktop.
Slugify Texto
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
function slugify($text) { | |
$text = preg_replace('~[^\pL\d]+~u', '-', $text); | |
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); | |
$text = preg_replace('~[^-\w]+~', '', $text); | |
$text = preg_replace('~-+~', '-', $text); | |
$text = trim($text, '-'); | |
$text = strtolower($text); | |
if (empty($text)) { | |
return 'n-a'; | |
} | |
return $text; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment