Turn a string of characters into a lowercased hyphenated string
Last active
November 16, 2016 03:42
-
-
Save micalexander/77e0aa503619d91b0a01 to your computer and use it in GitHub Desktop.
Turn a string of characters into a lowercased hyphenated string
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 | |
| /** | |
| * Turn a string of characters into a lowercased hyphenated string | |
| * @param string $text The string of text to hyphenate | |
| * @return string The hyphenated string of text | |
| * @author michael alexander | |
| */ | |
| function slugify($text) | |
| { | |
| // replace non letter or digits by - | |
| $text = preg_replace('~[^\\pL\d]+~u', '-', $text); | |
| // trim | |
| $text = trim($text, '-'); | |
| // transliterate | |
| $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); | |
| // lowercase | |
| $text = strtolower($text); | |
| // remove unwanted characters | |
| $text = preg_replace('~[^-\w]+~', '', $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