Skip to content

Instantly share code, notes, and snippets.

@helart
Last active August 21, 2020 06:40
Show Gist options
  • Save helart/059e3aa37cb5ecd89f5d3aff8382d87d to your computer and use it in GitHub Desktop.
Save helart/059e3aa37cb5ecd89f5d3aff8382d87d to your computer and use it in GitHub Desktop.
Транслит для ЧПУ
function translit_seo($value)
{
$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',
);
$value = mb_strtolower($value);
$value = strtr($value, $converter);
$value = mb_ereg_replace('[^-0-9a-z]', '-', $value);
$value = mb_ereg_replace('[-]+', '-', $value);
$value = trim($value, '-');
return $value;
}
echo translit_seo('Яндекс, Гугл, Майл ру');
// Результат
// yandeks-gugl-mayl-ru
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment