Skip to content

Instantly share code, notes, and snippets.

@morozVA
Last active March 5, 2018 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morozVA/ccb69412c89dadeb3d4418b6869c1dbd to your computer and use it in GitHub Desktop.
Save morozVA/ccb69412c89dadeb3d4418b6869c1dbd to your computer and use it in GitHub Desktop.
php translit alias from pagetitle
function translit($str) {
$rus = array(' ','А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ё', 'Ж', 'З', 'И', 'Й', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ы', 'Ь', 'Э', 'Ю', 'Я', 'а', 'б', 'в', 'г', 'д', 'е', 'ё', 'ж', 'з', 'и', 'й', 'к', 'л', 'м', 'н', 'о', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ъ', 'ы', 'ь', 'э', 'ю', 'я');
$lat = array('_', 'a', 'b', 'v', 'g', 'd', 'e', 'e', 'gh', 'z', 'i', 'y', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 't', 'u', 'f', 'h', 'c', 'ch', 'sh', 'sch', 'y', 'y', 'y', 'e', 'yu', 'ya', 'a', 'b', 'v', 'g', 'd', 'e', 'e', 'gh', 'z', 'i', 'y', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 't', 'u', 'f', 'h', 'c', 'ch', 'sh', 'sch', 'y', 'y', 'y', 'e', 'yu', 'ya');
return str_replace($rus, $lat, $str);
}
function makeAlias($url){
$url = ereg_replace(' ','-',$url);
$url = translit($url);
$url = ereg_replace("[^a-z A-Z0-9-]*","",$url);
$url = ereg_replace("-{2,}","-",$url);
$url = ereg_replace(' ','-',$url);
$url = trim(strtolower($url));
$url = ltrim($url,'-');
$url = rtrim($url,'-');
return $url;
}
$alias = makeAlias($pagetitle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment