当前位置:首页 > PHP教程 > 正则表达式 > 列表

php 中文与英语正则表达式

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-09 17:17:19 浏览: 评论:0 
  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="phpfensi.com" name="phpfensi.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.  {//开源代码phpfensi.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. ?>

Tags: php中文正则 php英语正则

分享到: