Skip to content

Instantly share code, notes, and snippets.

@mucahit00
Last active December 25, 2023 22:21
Show Gist options
  • Select an option

  • Save mucahit00/f66db9db8e8ce6aa8f07 to your computer and use it in GitHub Desktop.

Select an option

Save mucahit00/f66db9db8e8ce6aa8f07 to your computer and use it in GitHub Desktop.
Turkish URL Slug
<?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