我想用 PHP 计算字符串的长度。该字符串包含 HTML 实体编号,它增加了计算的字符数:–
当我只希望它计为 1 时,它被计为 7。
如何将 html 编号实体转换为特殊字符仅以 1 长度计的形式?
示例字符串:
Goth-Trad – ‘Cosmos’
编码:
$string = html_entity_decode('Goth-Trad – ‘Cosmos’');
echo strlen($string);
当我在寻找“20”时,会产生“38”。出了什么问题?