php中判断字符串是否全是中文或含有中文的实现代码

<?php
 header('Content-type:text/html; charset=utf-8');
 $str = '你好';
 if(preg_match('/^[\x{4e00}-\x{9fa5}]+$/u', $str)>0){
  echo '全是中文';
 }elseif(preg_match('/[\x{4e00}-\x{9fa5}]/u', $str)>0){
  echo '含有中文';
 }
?>

 

posted on 2016-11-11 11:34  长不大的菜鸟  阅读(8626)  评论(0编辑  收藏  举报

导航