php 中文与英语正则表达式
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-09 17:17:19 浏览: 评论:0
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>php 中文与英语正则表达式</title>
- </head>
- <body>
- <form id="phpfensi.com" name="phpfensi.com" method="post" action="">
- <input name="url" type="text" />
- <input name="" type="submit" value="提交 "/>
- </form>
- </body>
- </html>
- <?php
- function funcChinese($str,$num1='',$num2='')//判断中文正则
- {//开源代码phpfensi.com
- if($num1!='' and $num2!=''){
- return (preg_match("/^([x81-xfe][x40-xfe])
- {".$num1.",".$num2."}$/",$str))?true:false;
- }else{
- return (!eregi("[^x80-xff]","$str"))?
- true:false;
- }
- }
- if( $_POST)
- {
- if( funcChinese( $_POST['url'] ) )
- {
- echo '是中文';
- }
- else
- {
- exit('不是有效中文');
- }
- }
- //这个只能一个个字符判断,你可以用foreach来处理
- ?>
Tags: php中文正则 php英语正则
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)