php 中文与英语正则表达式

  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. <body>
  9. <form name="phpfensi.com" method="post" action="">
  10. <input name="url" type="text" />
  11. <input name="" type="submit" value="提交 "/>
  12. </form>
  13. </body>
  14. </html>
  15. <?php
  16. function funcChinese($str,$num1='',$num2='')//判断中文正则
  17. {//开源代码phpfensi.com
  18. if($num1!='' and $num2!=''){
  19. return (preg_match("/^([x81-xfe][x40-xfe])
  20. {".$num1.",".$num2."}$/",$str))?true:false;
  21. }else{
  22. return (!eregi("[^x80-xff]","$str"))?
  23. true:false;
  24. }
  25. }
  26. if( $_POST)
  27. {
  28. if( funcChinese( $_POST['url'] ) )
  29. {
  30. echo '是中文';
  31. }
  32. else
  33. {
  34. exit('不是有效中文');
  35. }
  36. }
  37. //这个只能一个个字符判断,你可以用foreach来处理
  38. ?>