Last active
December 25, 2023 22:21
-
-
Save mucahit00/f66db9db8e8ce6aa8f07 to your computer and use it in GitHub Desktop.
Turkish URL 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 getSlug( $data ){ | |
| $turkisLetter = ["Ğ","Ü","Ş","İ","Ö","Ç","ğ","ü","ş","ı","ö","ç"," "]; | |
| $englishLetter = ["G","U","S","I","O","C","g","u","s","i","o","c","-"]; | |
| return str_replace($turkisLetter, $englishLetter, strip_tags(trim($data))); | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment