Created
October 6, 2019 20:31
-
-
Save OlegShchavelev/d5a3beec8cd5b9fe3a5ead66e6bd1a2a to your computer and use it in GitHub Desktop.
Модификатор трансолирации
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 | |
$output = $input; | |
$output = strtr($output, | |
array( | |
'а' => 'a', 'б' => 'b', 'в' => 'v', | |
'г' => 'g', 'д' => 'd', 'е' => 'e', | |
'ё' => 'e', 'ж' => 'zh', 'з' => 'z', | |
'и' => 'i', 'й' => 'ij', 'к' => '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', | |
) | |
); | |
// в нижний регистр | |
$output = strtolower($output); | |
// заменям все ненужное нам на "-" | |
$output = preg_replace('~[^-a-z0-9_]+~u', '-', $output); | |
// удаляем начальные и конечные '-' | |
$output = trim($output, "-"); | |
return $output; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment