Я использовал этот код из Stackoverflow, чтобы создать заголовок из строки
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\pL\d]+~u', '-', $text);
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
// trim
$text = trim($text, '-');
// remove duplicate -
$text = preg_replace('~-+~', '-', $text);
// lowercase
$text = strtolower($text);
if (empty($text))
{
return 'n-a';
}
return $text;
}
Это работает нормально для большинства строк. но получая это для некоторых строк, таких как «Азур и Азмар / Azur et Asmar «. что мне теперь менять?
Notice: iconv(): Detected an illegal character in input string in
Просто попробуйте изменить
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
в
$text = iconv('utf-8', 'us-ascii//IGNORE', $text);
Других решений пока нет …