同一个PHP文件中用substr_replace函数时出现乱码问题,用str_ireplace函数时正常,究竟问题出在哪儿了
发布网友
发布时间:2022-04-06 06:50
我来回答
共3个回答
热心网友
时间:2022-04-06 08:19
需要从写 该函数
if($length && strlen($string) > $length) {
//截断字符
$wordscut = '';
if(strtolower($encoding) == 'utf-8') {
//utf8编码
$n = 0;
$tn = 0;
$noc = 0;
while ($n < strlen($string)) {
$t = ord($string[$n]);
if($t == 9 || $t == 10 || (32 <= $t && $t <= 126)) {
$tn = 1;
$n++;
$noc++;
} elseif(194 <= $t && $t <= 223) {
$tn = 2;
$n += 2;
$noc += 2;
} elseif(224 <= $t && $t < 239) {
$tn = 3;
$n += 3;
$noc += 2;
} elseif(240 <= $t && $t <= 247) {
$tn = 4;
$n += 4;
$noc += 2;
} elseif(248 <= $t && $t <= 251) {
$tn = 5;
$n += 5;
$noc += 2;
} elseif($t == 252 || $t == 253) {
$tn = 6;
$n += 6;
$noc += 2;
} else {
$n++;
}
if ($noc >= $length) {
break;
}
}
if ($noc > $length) {
$n -= $tn;
}
$wordscut = substr($string, 0, $n);
} else {
for($i = 0; $i < $length - 1; $i++) {
if(ord($string[$i]) > 127) {
$wordscut .= $string[$i].$string[$i + 1];
$i++;
} else {
$wordscut .= $string[$i];
}
}
}
$string = $wordscut;
}
return trim($string);
}
这个函数 就不会有乱码了
热心网友
时间:2022-04-06 09:37
建议使用mb_substr和mb_strcut。具体差别可以看下资料。
另外如果实际应用的话最好在截取之前过滤一下标签(strip_tags)。否则有的时候会截断标签。
即使自定义的function的话基本上也都是用的mb_substr或者mb_strcut
热心网友
时间:2022-04-06 11:12
用chr()函数返回值检测下是不是中文的是中文并且是utf-8的话截取三个字节不是utf-8的话截取两个英文截取一个