<?php
$str = "学习php是一件快乐的事。";
preg_match_all("/[x80-xff]+/", $str, $match);
//UTF-8 使用:
//preg_match_all("/[x{4e00}-x{9fa5}]+/u", $str, $match);
print_r($match);
?>
输出:
复制代码 代码如下:
Array
(
[0] => Array
(
[0] => 学习
[1] => 是一件快乐的事。
)
)
您可能感兴趣的文章: