风故故,也依依

Stand still in the wind.

导航

2011年8月22日 #

php验证email拼写的正确性

摘要: function is_email($email) { $exp = "^[a-z'0-9]+([._-][a-z'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$"; if(eregi($exp,$email)) { return true; } return false;} 阅读全文

posted @ 2011-08-22 19:37 jadmin 阅读(143) 评论(0) 推荐(0) 编辑

php去掉字符串前后的引号

摘要: function remove_quote(&$str) { if (preg_match("/^\"/",$str)){ $str = substr($str, 1, strlen($str) - 1); } //判断字符串是否以'"'结束 if (preg_match("/\"$/",$str)){ ... 阅读全文

posted @ 2011-08-22 19:36 jadmin 阅读(4251) 评论(0) 推荐(0) 编辑

PHP判断字符串是中文还是英文

摘要: function is_chinese($s){ $allen = preg_match("/^[^\x80-\xff]+$/", $s); //判断是否是英文 $allcn = preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/",$s); //判断是否是中文 if($allen){ ... 阅读全文

posted @ 2011-08-22 10:14 jadmin 阅读(1367) 评论(0) 推荐(1) 编辑