首页 > 语言 > PHP > 正文

php 中文与英语正则表达式

2024-09-04 11:47:35
字体:
来源:转载
供稿:网友
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  6. <title>php 中文与英语正则表达式</title> 
  7. </head> 
  8.  
  9. <body> 
  10. <form id="Vevb.com" name="Vevb.com" method="post" action=""
  11.  
  12. <input name="url" type="text"  /> 
  13. <input name="" type="submit"   value="提交 "/> 
  14. </form> 
  15.  
  16. </body> 
  17. </html> 
  18. <?php 
  19. function funcChinese($str,$num1='',$num2='')//判断中文正则 
  20.  {//开源代码Vevb.com 
  21.   if($num1!='' and $num2!=''){ 
  22.    return (preg_match("/^([x81-xfe][x40-xfe]) 
  23.  
  24. {".$num1.",".$num2."}$/",$str))?true:false; 
  25.   }else
  26.    return (!eregi("[^x80-xff]","$str"))? 
  27.  
  28. true:false; 
  29.   } 
  30.  } 
  31.  
  32. if$_POST
  33.  if( funcChinese( $_POST['url'] )  ) 
  34.  { 
  35.   echo '是中文'
  36.  } 
  37.  else 
  38.  { 
  39.   exit('不是有效中文'); 
  40.  } 
  41. //这个只能一个个字符判断,你可以用foreach来处理
  42. ?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表