从我之前的问题分支。
在我的 CMS (CQ5) 中,我正在获取使用 ASCII 编码输入的值。有时输入的这些字符串中的一些包含特殊字符(即版权) ,当我在 PHP 中输出它时,会在其前面插入®
一个奇怪的字符 。Â
我研究过将其编码为 UTF-8,但这不起作用。我尝试了以下方法:
//$title is the CMS input that contains special characters
$strA = iconv('ASCII', 'UTF-8//IGNORE', $title);
$strB = mb_convert_encoding($title, "UTF-8");
$strC = utf8_encode($title);