Skip to content

Instantly share code, notes, and snippets.

@burakerdem
Created July 10, 2012 21:07
Show Gist options
  • Save burakerdem/3086242 to your computer and use it in GitHub Desktop.
Save burakerdem/3086242 to your computer and use it in GitHub Desktop.
CodeIgniter url_title() Türkçe
url_title('CodeIgniter ile Wordpress Benzeri Adresler Oluşturmak');
@kodmanyagha
Copy link

Şu küçük kod parçasını önceden googleda rahatlıkla buluyodum ama artık bulunmaz olmuş ve google beni buraya attı. Asıl aradığım şey işte bu kod parçası ve başkaları da bulabilsin diye buraya yazıyorum.

function strToUrl( $str ) {
	$turkish = array("ı", "ğ", "ü", "ş", "ö", "ç", "İ", "Ğ", "Ü", "Ş", "Ö", "Ç");
	$english = array("i", "g", "u", "s", "o", "c", "I", "G", "U", "S", "O", "C");

	$str = str_replace($turkish, $english, $str);

	return url_title( $str, "_", true );
}

@berataras
Copy link

teşekkürler.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment