您好遇到以下问题
首先:如果 ÄÖÜ 提供了正则表达式,则商标符号替换会产生额外的字符 ...:
第二:如果我对结果进行字符串循环,所有特殊字符都是�。
问题是,为什么会发生这种情况,我该怎么做呢?(第二个问题不是那么必要,但很有趣)
header('Content-Type: text/html; charset=utf-8');
$testtxt = 'MicrÖsüft W!ndows® is a trÄdemark of Microfrost™ ©2012!';
$r = preg_replace('#[^\w\s\däöüß%\!\?\.,\:\-_\[\]ÄÖÜ]#is', 'X', $testtxt);
echo $testtxt, '<br>', $r;
echo '<hr>';
for($i = 0, $size = strlen($r); $i < $size; ++$i) {
echo $r[$i], '=', ord($r[$i]), '<br>';
}
结果:
MicrÖsüft W!ndows® is a trÄdemark of Microfrost™ ©2012!
MicrÖsüft W!ndowsXX is a trÄdemark of MicrofrostX�X XX2012!
M=77
i=105
c=99
r=114
�=195
�=150....
预期的:
MicrÖsüft W!ndows® is a trÄdemark of Microfrost™ ©2012!
MicrÖsüft W!ndowsXX is a trÄdemark of MicrofrostXX XX2012!
M=77
i=105
c=99
r=114
Ö=195
s=150....