创建标题 Slug 时出错 注意:iconv():在输入字符串中检测到非法字符
Posted
技术标签:
【中文标题】创建标题 Slug 时出错 注意:iconv():在输入字符串中检测到非法字符【英文标题】:Error while Creating title Slug Notice: iconv(): Detected an illegal character in input string in 【发布时间】:2016-06-19 23:09:23 【问题描述】:我使用 *** 中的这段代码从字符串中创建标题 slug
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
【问题讨论】:
【参考方案1】:尝试改变
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
到
$text = iconv('utf-8', 'us-ascii//IGNORE', $text);
【讨论】:
以上是关于创建标题 Slug 时出错 注意:iconv():在输入字符串中检测到非法字符的主要内容,如果未能解决你的问题,请参考以下文章
尝试在 Macintosh 上构建 Ghostscript 9.0.1 时出错