<?php /** *判断字符串是否全是中文 */ function isAllChinese($str){ if(preg_match(‘/^[\x7f-\xff]+$/‘, $str)){ return true;//全是中文 }else{ return false;//不全是中文 } } var_dump(isAllChinese(‘你好‘)); ?>
来自微信公众号:编程社
程序员日常进阶宝典,欢迎关注!
原文地址:https://www.cnblogs.com/ai10999/p/11449485.html
时间: 2024-11-07 13:17:05