Created
January 21, 2019 10:12
-
-
Save condor-bird/56ad6c80fcbf30414d969fbc5bf8d4d0 to your computer and use it in GitHub Desktop.
test translit
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 rus2translit($string) { | |
$converter = array( | |
'а' => 'a', 'б' => 'b', 'в' => 'v', | |
'г' => 'g', 'д' => 'd', 'е' => 'e', | |
'ё' => 'e', 'ж' => 'zh', 'з' => 'z', | |
'и' => 'i', 'й' => 'y', 'к' => 'k', | |
'л' => 'l', 'м' => 'm', 'н' => 'n', | |
'о' => 'o', 'п' => 'p', 'р' => 'r', | |
'с' => 's', 'т' => 't', 'у' => 'u', | |
'ф' => 'f', 'х' => 'h', 'ц' => 'c', | |
'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sch', | |
'ь' => '\'', 'ы' => 'y', 'ъ' => '\'', | |
'э' => 'e', 'ю' => 'yu', 'я' => 'ya', | |
'А' => 'A', 'Б' => 'B', 'В' => 'V', | |
'Г' => 'G', 'Д' => 'D', 'Е' => 'E', | |
'Ё' => 'E', 'Ж' => 'Zh', 'З' => 'Z', | |
'И' => 'I', 'Й' => 'Y', 'К' => 'K', | |
'Л' => 'L', 'М' => 'M', 'Н' => 'N', | |
'О' => 'O', 'П' => 'P', 'Р' => 'R', | |
'С' => 'S', 'Т' => 'T', 'У' => 'U', | |
'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C', | |
'Ч' => 'Ch', 'Ш' => 'Sh', 'Щ' => 'Sch', | |
'Ь' => '\'', 'Ы' => 'Y', 'Ъ' => '\'', | |
'Э' => 'E', 'Ю' => 'Yu', 'Я' => 'Ya', | |
); | |
return strtr($string, $converter); | |
} | |
function str2url($str) { | |
// переводим в транслит | |
$str = rus2translit($str); | |
// в нижний регистр | |
$str = strtolower($str); | |
// заменям все ненужное нам на "-" | |
$str = preg_replace('~[^-a-z0-9_]+~u', '-', $str); | |
// удаляем начальные и конечные '-' | |
$str = trim($str, "-"); | |
return $str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment