php用正则表达式判断是否仅是中文汉字和英文字母组成!!!急

2024-12-22 02:35:51
推荐回答(1个)
回答1:

$content = 'sdfsdf';
if (preg_match ( "/^[\u4e00-\u9fa5a-zA-Z]+$/", $content, $m )) {

}else{

}