Last active
April 17, 2024 10:21
-
-
Save khoatran/8afeccd7a44c52ad39cfee00a093ec31 to your computer and use it in GitHub Desktop.
Convert Vietnamese string to slug
This file contains 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 | |
class TextUtil { | |
public static function sanitize($title) { | |
$replacement = '-'; | |
$map = array(); | |
$quotedReplacement = preg_quote($replacement, '/'); | |
$default = array( | |
'/à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ|À|Á|Ạ|Ả|Ã|Â|Ầ|Ấ|Ậ|Ẩ|Ẫ|Ă|Ằ|Ắ|Ặ|Ẳ|Ẵ|å/' => 'a', | |
'/è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ|È|É|Ẹ|Ẻ|Ẽ|Ê|Ề|Ế|Ệ|Ể|Ễ|ë/' => 'e', | |
'/ì|í|ị|ỉ|ĩ|Ì|Í|Ị|Ỉ|Ĩ|î/' => 'i', | |
'/ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ|Ò|Ó|Ọ|Ỏ|Õ|Ô|Ồ|Ố|Ộ|Ổ|Ỗ|Ơ|Ờ|Ớ|Ợ|Ở|Ỡ|ø/' => 'o', | |
'/ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ|Ù|Ú|Ụ|Ủ|Ũ|Ư|Ừ|Ứ|Ự|Ử|Ữ|ů|û/' => 'u', | |
'/ỳ|ý|ỵ|ỷ|ỹ|Ỳ|Ý|Ỵ|Ỷ|Ỹ/' => 'y', | |
'/đ|Đ/' => 'd', | |
'/ç/' => 'c', | |
'/ñ/' => 'n', | |
'/ä|æ/' => 'ae', | |
'/ö/' => 'oe', | |
'/ü/' => 'ue', | |
'/Ä/' => 'Ae', | |
'/Ü/' => 'Ue', | |
'/Ö/' => 'Oe', | |
'/ß/' => 'ss', | |
'/[^\s\p{Ll}\p{Lm}\p{Lo}\p{Lt}\p{Lu}\p{Nd}]/mu' => ' ', | |
'/\\s+/' => $replacement, | |
sprintf('/^[%s]+|[%s]+$/', $quotedReplacement, $quotedReplacement) => '', | |
); | |
//Some URL was encode, decode first | |
$title = urldecode($title); | |
$map = array_merge($map, $default); | |
return strtolower(preg_replace(array_keys($map), array_values($map), $title)); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment