From 6100e3bcd4296f6dab4ea96865f17433f3fc3575 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 13 Jan 2023 03:12:34 +0100 Subject: [PATCH] Add string to latin conversion function --- Util/SluggerUtil.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Util/SluggerUtil.php b/Util/SluggerUtil.php index 8dc50df..fc3f462 100644 --- a/Util/SluggerUtil.php +++ b/Util/SluggerUtil.php @@ -198,6 +198,31 @@ class SluggerUtil { return trim(preg_replace('/[\/_|+ -]+/', '-', strtolower(preg_replace('/[^a-zA-Z0-9\/_|+ -]/', '', str_replace(['\'', '"'], ' ', iconv('UTF-8', 'ASCII//TRANSLIT', $data))))), '-'); } + /** + * Convert string to latin + * + * @param string $data The data string + * @return ?string The slugged data + */ + function latin(?string $data): ?string { + //With null + if ($data === null) { + //Return null + return $data; + } + + //Use Transliterator if available + if (class_exists('Transliterator')) { + //Convert from any to latin, then to ascii and lowercase + $trans = \Transliterator::create('Any-Latin; Latin-ASCII'); + //Replace every non alphanumeric character by dash then trim dash + return trim($trans->transliterate($data)); + } + + //Convert from utf-8 to ascii + return trim(iconv('UTF-8', 'ASCII//TRANSLIT', $data)); + } + /** * Unshort then unserialize * -- 2.41.0