PHP修复像示例中的破碎字符

时间:2016-06-02 23:39:18

标签: php encoding filtering

过滤这样的字符的最佳方法是什么:

็็็็็็็็็็็็็็็็็็็็็็็็็็็

在没有打破其他外国人的情况下出局?

感谢。

1 个答案:

答案 0 :(得分:0)

如果过滤正确的Unicode范围,这应该有效:

$str = 'Your string with Unicode symbols'
preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $str);

https://3v4l.org/EY06F

http://php.net/manual/en/function.preg-replace.php