//GBK/GB2312编码 EUC-CN preg_match_all("/[x80-xff]+/", $str, $match); //UTF-8 使用:UTF-8 preg_match_all("/[\x{4e00}-\x{9fa5}]+/u", $str, $match);
本文共 195 字,大约阅读时间需要 1 分钟。
//GBK/GB2312编码 EUC-CN preg_match_all("/[x80-xff]+/", $str, $match); //UTF-8 使用:UTF-8 preg_match_all("/[\x{4e00}-\x{9fa5}]+/u", $str, $match);
转载于:https://my.oschina.net/wuzhencan/blog/521307