直接上代码示例:


$str='2016,北京欢迎您 from around you..';

preg_match_all('/[\x{4e00}-\x{9fff}]+/u', $str, $matches);

$str = join('', $matches[0]);

输出

北京欢迎您