PHP-判断字符串是否全是中文或含有中文的实现代码 作者:时鹏亮 | 更新时间:12/18/2015 08:31:50判断全是中文:if(!eregi("[^x80-xff]","$str")){echo "全是中文";}else{echo "不是";} 判断含有中文:$str = "中[......]阅读全文